Fix bdist_wheel

Without this, attempting to build a wheel produces:
```bash
$ python setup.py bdist_wheel
/path/to/venv/lib/python2.7/site-packages/setuptools/dist.py:333: UserWarning: Normalizing '1.2.1.post.dev3' to '1.2.1.post0.dev3'
  normalized_version,
running bdist_wheel
error: invalid truth value ''
```
This commit is contained in:
Mike Miller
2017-11-26 14:32:42 +02:00
parent 2931fe527e
commit 3355fcf702
+1 -1
View File
@@ -3,7 +3,7 @@
[bdist_wheel]
# Use this option if your package is pure-python
universal =
universal = 1
[versioneer]
VCS = git