From 00d0bb714b76872e885d83281a328a67aa8fa9df Mon Sep 17 00:00:00 2001 From: Boris Bobrov Date: Sat, 10 Jun 2017 01:24:29 +0300 Subject: Remove upper cap on celery kombu Also remove kombu from requirements, because celery fetches it anyway --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 6d309f7e..5dc30591 100644 --- a/setup.py +++ b/setup.py @@ -56,8 +56,7 @@ install_requires = [ 'pytest>=2.3.1', 'pytest-xdist', 'werkzeug>=0.7', - 'celery>=3.0,<4.0a0', - 'kombu<4.0a0', + 'celery>=3.0', 'jinja2', 'Babel>=1.3', 'WebTest>=2.0.18', -- cgit v1.2.3 From 411ae185bfbd0f607ef6a5e2a5bf325a01209f97 Mon Sep 17 00:00:00 2001 From: Boris Bobrov Date: Sat, 10 Jun 2017 01:29:19 +0300 Subject: move exifread to other dependencies --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 5dc30591..72c19735 100644 --- a/setup.py +++ b/setup.py @@ -74,6 +74,7 @@ install_requires = [ 'PasteScript', 'requests>=2.6.0', 'pyld', + 'ExifRead>=2.0.0' # This is optional: # 'translitcodec', # For now we're expecting that users will install this from @@ -82,10 +83,8 @@ install_requires = [ # 'Pillow', ] + pyversion_install_requires -dependency_links = [] if not PY2: # PyPI version (1.4.2) does not have proper Python 3 support - dependency_links.append('https://github.com/ianare/exif-py/zipball/develop#egg=ExifRead-2.0.0') install_requires.append('ExifRead>=2.0.0') with open(READMEFILE, encoding="utf-8") as fobj: @@ -100,7 +99,6 @@ try: include_package_data = True, # scripts and dependencies install_requires=install_requires, - dependency_links=dependency_links, test_suite='nose.collector', entry_points="""\ [console_scripts] -- cgit v1.2.3