mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Revert setup.py changes. Ensure universal wheels.
Attempts at fancy version number handling in setup.py caused more problems than they were worth, including Travis CI build failures. The setup.cfg key for universal binary wheel generation apparently changed at some point, so that was updated as well.
This commit is contained in:
parent
d41331bd69
commit
9b5261512d
2 changed files with 2 additions and 3 deletions
|
|
@ -1,2 +1,2 @@
|
|||
[wheel]
|
||||
[bdist_wheel]
|
||||
universal = 1
|
||||
|
|
|
|||
3
setup.py
3
setup.py
|
|
@ -1,6 +1,5 @@
|
|||
#!/usr/bin/env python
|
||||
from setuptools import setup
|
||||
from pelican import __version__
|
||||
|
||||
requires = ['feedgenerator >= 1.6', 'jinja2 >= 2.7', 'pygments', 'docutils',
|
||||
'pytz >= 0a', 'blinker', 'unidecode', 'six >= 1.4',
|
||||
|
|
@ -22,7 +21,7 @@ CHANGELOG = open('docs/changelog.rst').read()
|
|||
|
||||
setup(
|
||||
name="pelican",
|
||||
version=str(__version__),
|
||||
version="3.4.0",
|
||||
url='http://getpelican.com/',
|
||||
author='Alexis Metaireau',
|
||||
author_email='authors@getpelican.com',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue