Skip to content
This repository has been archived by the owner on Nov 18, 2024. It is now read-only.

Commit

Permalink
Stop using setup_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed Oct 22, 2021
1 parent 04aab25 commit b6905d2
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,5 @@
print("WARNING: failed to import versioneer, falling back to no version for now")
setup_kw = {}

# Give setuptools a hint to complain if it's too old a version
# 30.3.0 allows us to put most metadata in setup.cfg
# Should match pyproject.toml
SETUP_REQUIRES = ["setuptools >= 38.3.0"]
# This enables setuptools to install wheel on-the-fly
SETUP_REQUIRES += ["wheel"] if "bdist_wheel" in sys.argv else []

if __name__ == "__main__":
setup(name="dandi", setup_requires=SETUP_REQUIRES, **setup_kw)
setup(name="dandi", **setup_kw)

0 comments on commit b6905d2

Please sign in to comment.