Skip to content

Commit

Permalink
Merge pull request #58 from s-t-e-v-e-n-k/no-distutils-py312
Browse files Browse the repository at this point in the history
Do not unilaterally import distutils in setup.py
  • Loading branch information
sdelafond authored Jan 16, 2024
2 parents 05518a1 + 2403940 commit 6042f35
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@
# part of the icecast project, http://svn.xiph.org/icecast/trunk/shout-python)

try:
from setuptools import setup
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup
from distutils.core import Extension
from distutils.core import setup, Extension
import os
import sys

Expand Down

0 comments on commit 6042f35

Please sign in to comment.