diff options
| author | Alex Grönholm <alex.gronholm@nextday.fi> | 2020-01-27 22:11:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-27 22:11:57 +0200 |
| commit | 510a531af1415638ef5f0b9f443762dec62ed4fe (patch) | |
| tree | 571aa9a9a27b58c02fe5a4c26b7fcea0a8f7011a /setup.py | |
| parent | ca444968b544a9685c3c4fbc73715d25b90f4c46 (diff) | |
| download | wheel-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,3 +1,3 @@ from setuptools import setup -setup(use_scm_version=True) +setup() |
