ports/www/py-pyjwt/files/patch-setup.py
Kubilay Kocak 4c8eccf2bd www/py-pyjwt: Update to 1.4.0, Modernize
- Update PORTVERSION and distinfo checksum (1.4.0)
- Update run and test dependencies (pycrypto -> cryptography)
- Enable "concurrent" Python installation
- Enable NO_ARCH (architecture independent)
- Update test target
- Patch setup.py not to install non-compulsory tests_requires
- Group OPTIONS_* entries
- Pet portling (DISTNAME order)
- Uncomment LICENSE_FILE

PR:		205443
Reviewed by:	maintainer <terje elde net>
Approved by:	maintainer <terje elde net>
2016-02-26 10:44:33 +00:00

19 lines
410 B
Python

--- setup.py.orig 2016-02-26 09:43:54 UTC
+++ setup.py
@@ -31,8 +31,6 @@ if sys.argv[-1] == 'publish':
tests_require = [
'pytest',
- 'pytest-cov',
- 'pytest-runner',
]
setup(
@@ -61,7 +59,6 @@ setup(
'Topic :: Utilities',
],
test_suite='tests',
- setup_requires=['pytest-runner'],
tests_require=tests_require,
extras_require=dict(
test=tests_require,