Commit 8436db93f25d8fd69286e532b879adbf5641bfd0
1 parent
d8c3c1c1
Exists in
master
and in
31 other branches
Allow higher versions from deps
Signed-off-by: Sergio Oliveira <sergio@tracy.com.br> Signed-off-by: Carolina Ramalho <carol15022@hotmail.com> Signed-off-by: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
Showing
1 changed file
with
20 additions
and
20 deletions
Show diff stats
setup.py
| ... | ... | @@ -3,48 +3,48 @@ from setuptools import setup, find_packages |
| 3 | 3 | |
| 4 | 4 | |
| 5 | 5 | REQUIREMENTS = [ |
| 6 | - 'Django==1.7.7', | |
| 6 | + 'Django>=1.7.8', | |
| 7 | 7 | 'pytz>=2011n', |
| 8 | - 'django-mobile==0.3.0', | |
| 9 | - 'django-haystack==2.2', | |
| 10 | - 'pysolr==2.1', | |
| 11 | - 'django-hitcounter==0.1.1', | |
| 12 | - 'django-tastypie==0.11.0', | |
| 8 | + 'django-mobile>=0.3.0', | |
| 9 | + 'django-haystack>=2.2', | |
| 10 | + 'pysolr>=2.1', | |
| 11 | + 'django-hitcounter>=0.1.1', | |
| 12 | + 'django-tastypie>=0.12.1', | |
| 13 | 13 | |
| 14 | 14 | # Deps for Single SignOn (SSO) - Replaced with django-browserid==0.9 |
| 15 | - 'django-browserid==0.11', | |
| 16 | - 'django-revproxy==0.9.0', | |
| 15 | + 'django-browserid>=0.11', | |
| 16 | + 'django-revproxy>=0.9.0', | |
| 17 | 17 | |
| 18 | 18 | # Diazo |
| 19 | - 'diazo==1.0.5', | |
| 19 | + 'diazo>=1.0.5', | |
| 20 | 20 | |
| 21 | 21 | ### Move out of colab (as plugins): |
| 22 | 22 | |
| 23 | 23 | # Deps for badger |
| 24 | - 'Pillow==2.5.1', | |
| 25 | - 'django-i18n-model==0.0.7', | |
| 24 | + 'Pillow==2.8.1', | |
| 25 | + 'django-i18n-model>=0.0.7', | |
| 26 | 26 | |
| 27 | 27 | # Deps for super_archives |
| 28 | 28 | 'etiquetando==0.1', |
| 29 | - 'django-taggit==0.12.1', | |
| 30 | - 'html2text==3.200.3', | |
| 29 | + 'django-taggit>=0.12.1', | |
| 30 | + 'html2text>=3.200.3', | |
| 31 | 31 | 'chardet>=1.0.1', |
| 32 | 32 | |
| 33 | 33 | # Deps for gitlab plugin |
| 34 | - 'python-dateutil==1.5', | |
| 34 | + 'python-dateutil>=1.5', | |
| 35 | 35 | |
| 36 | 36 | # Converse.js (XMPP client) |
| 37 | - 'django-conversejs==0.3.4', | |
| 37 | + 'django-conversejs>=0.3.4', | |
| 38 | 38 | |
| 39 | 39 | # Mailman 2 REST API |
| 40 | - 'mailman-api==0.2.9', | |
| 40 | + 'mailman-api>=0.2.9', | |
| 41 | 41 | ] |
| 42 | 42 | |
| 43 | 43 | TEST_REQUIREMENTS = [ |
| 44 | - 'coverage==3.7.1', | |
| 45 | - 'coveralls==0.5', | |
| 46 | - 'flake8==2.3.0', | |
| 47 | - 'mock==1.0.1', | |
| 44 | + 'coverage>=3.7.1', | |
| 45 | + 'coveralls>=0.5', | |
| 46 | + 'flake8>=2.3.0', | |
| 47 | + 'mock>=1.0.1', | |
| 48 | 48 | ] |
| 49 | 49 | |
| 50 | 50 | ... | ... |