diff options
author | Kubilay Kocak <koobs@FreeBSD.org> | 2015-06-05 05:49:38 +0000 |
---|---|---|
committer | Kubilay Kocak <koobs@FreeBSD.org> | 2015-06-05 05:49:38 +0000 |
commit | 737ca1ffc24bbd7b3a1d1343f09c87f540485d2f (patch) | |
tree | 8e84529062d54eed4f967f3a8e56075da884df4f /www/py-gandi.cli/files/patch-setup.py | |
parent | Fix typo (diff) |
www/py-gandi.cli: Update to 0.14, concurrent Python support
- Update to 0.14
- Add multiple concurrent Python support
- Match upstream dependency versions in RUN_DEPENDS so they fail-closed
when py-click is updated to 4.0
- Add RUN_DEPENDS to TEST_DEPENDS since they're needed to test.
- Patch setup.py to remove optional test dependencies (coverage, tox)
Changes:
https://github.com/Gandi/gandi.cli/blob/0.14/CHANGES.rst
Requested by: bapt
Notes
Notes:
svn path=/head/; revision=388570
Diffstat (limited to 'www/py-gandi.cli/files/patch-setup.py')
-rw-r--r-- | www/py-gandi.cli/files/patch-setup.py | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/www/py-gandi.cli/files/patch-setup.py b/www/py-gandi.cli/files/patch-setup.py index 6c7022a40861..e3f2a4235b76 100644 --- a/www/py-gandi.cli/files/patch-setup.py +++ b/www/py-gandi.cli/files/patch-setup.py @@ -1,4 +1,4 @@ ---- setup.py.orig 2015-01-08 09:26:15 UTC +--- setup.py.orig 2015-04-01 08:43:36 UTC +++ setup.py @@ -6,10 +6,11 @@ import os import sys @@ -14,7 +14,16 @@ with open(os.path.join(here, 'gandi', 'cli', '__init__.py')) as v_file: -@@ -49,6 +50,7 @@ setup(name='gandi.cli', +@@ -18,7 +19,7 @@ with open(os.path.join(here, 'gandi', 'c + + requires = ['setuptools', 'pyyaml', 'click<=4.0', 'requests', 'IPy'] + +-tests_require = ['nose', 'coverage', 'tox', 'httpretty==0.8.6'] ++tests_require = ['nose', 'httpretty==0.8.6' ] + if sys.version_info < (2, 7): + tests_require += ['unittest2', 'importlib'] + +@@ -52,6 +53,7 @@ setup(name='gandi.cli', zip_safe=False, install_requires=requires, tests_require=tests_require, |