summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2020-01-27 22:11:57 +0200
committerGitHub <noreply@github.com>2020-01-27 22:11:57 +0200
commit510a531af1415638ef5f0b9f443762dec62ed4fe (patch)
tree571aa9a9a27b58c02fe5a4c26b7fcea0a8f7011a /setup.py
parentca444968b544a9685c3c4fbc73715d25b90f4c46 (diff)
downloadwheel-git-510a531af1415638ef5f0b9f443762dec62ed4fe.tar.gz
Fixed installation from sdist (#334)
Wheel cannot use pep517 yet because the installation process involves installing wheel because the setuptools build backend declares it as a dependency for building wheels. A future update of pip may solve this problem. Setuptools_scm, on the other hand, requires wheel as a build time dependency so if somebody tries to install wheel using `--no-binary=:all:`, it also creates a circular dependency. Fixes #332.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index d5d43d7..6068493 100644
--- a/setup.py
+++ b/setup.py
@@ -1,3 +1,3 @@
from setuptools import setup
-setup(use_scm_version=True)
+setup()