Skip to content

Commit

Permalink
Merge pull request #37 from OCopping/get-bdist-wheel-from-setuptools
Browse files Browse the repository at this point in the history
Add bdist_wheel import try from setuptools
  • Loading branch information
OCopping authored Aug 23, 2024
2 parents 0952d4f + 8e94c33 commit 3545784
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions src/setuptools_dso/dsocmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,20 @@
import multiprocessing as MP
import logging as log

try:
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
except ImportError:
_bdist_wheel = None
def _import_bdist_wheel():
try:
from setuptools.command.bdist_wheel import bdist_wheel
return bdist_wheel
except ImportError:
pass
try:
from wheel.bdist_wheel import bdist_wheel
return bdist_wheel
except ImportError:
return None

_bdist_wheel = _import_bdist_wheel()
del _import_bdist_wheel

from setuptools import Command, Distribution, Extension as _Extension
from setuptools.command.build_ext import build_ext as _build_ext
Expand Down

0 comments on commit 3545784

Please sign in to comment.