Changeset - 9ec1d2ac4529
[Not reviewed]
default
0 2 0
Mads Kiilerich (mads) - 8 years ago 2018-08-06 00:37:13
mads@kiilerich.com
setup: normalize casing of dependencies and formatting of constraints

The package name casing might seem random, but it is more correct than our own random casing.

These changes mainly come from:
pip freeze | sed -n '/==/s/==.*//gp' | while read a; do sed -i "s/$a/$a/i" setup.py dev_requirements.txt ; done
sed -i -e 's/>=/ >= /' -e 's/ >=/ >=/' -e 's/>= />= /g' -e 's/,</, </' -e 's/</< /' -e 's/< /< /g' -e 's/< =/<= /g' setup.py dev_requirements.txt
2 files changed with 11 insertions and 11 deletions:
0 comments (0 inline, 0 general)
dev_requirements.txt
Show inline comments
 
babel >= 0.9.6, < 2.4
 
Babel >= 0.9.6, < 2.4
 
waitress >= 0.8.8, < 1.0
 
pytest ~= 3.0, >= 3.3.0
 
pytest >= 3.3.0, < 4
 
pytest-runner
 
pytest-sugar>=0.7.0
 
pytest-benchmark
 
pytest-localserver
 
mock
 
sphinx
 
webtest < 3
 
Sphinx
 
WebTest < 3
setup.py
Show inline comments
 
@@ -36,23 +36,23 @@ is_windows = __platform__ in ['Windows']
 

	
 
requirements = [
 
    "alembic>=0.8.0,<0.9",
 
    "GearBox<1",
 
    "gearbox < 1",
 
    "waitress>=0.8.8,<1.0",
 
    "webob>=1.7,<1.8.0", # TurboGears2 doesn't support 1.8.0
 
    "WebOb >= 1.7, < 1.8.0", # TurboGears2 doesn't support 1.8.0
 
    "backlash >= 0.1.2, < 1.0.0",
 
    "TurboGears2 >= 2.3.10, < 3.0.0",
 
    "tgext.routes >= 0.2.0, < 1.0.0",
 
    "Beaker>=1.7.0,<2",
 
    "WebHelpers==1.3",
 
    "formencode>=1.2.4,<=1.2.6",
 
    "FormEncode >= 1.2.4, <= 1.2.6",
 
    "SQLAlchemy>=1.1,<1.2",
 
    "Mako>=0.9.0,<=1.0.0",
 
    "pygments>=1.5",
 
    "whoosh>=2.5.0,<=2.5.7",
 
    "Pygments >= 1.5",
 
    "Whoosh >= 2.5.0, <= 2.5.7",
 
    "celery>=3.1,<3.2",
 
    "babel>=0.9.6,<2.4",
 
    "Babel >= 0.9.6, < 2.4",
 
    "python-dateutil>=1.5.0,<2.0.0",
 
    "markdown==2.2.1",
 
    "Markdown == 2.2.1",
 
    "docutils>=0.8.1",
 
    "URLObject==2.3.4",
 
    "Routes==1.13",
0 comments (0 inline, 0 general)