lbry-fdroid/recipes/zope_interface/no_tests.patch
Akinwale Ariwodola e08f6ee73c
add / update recipes and build changes for Python 3.6.6 compatibility (#315)
* add / update recipes and build changes for Python 3.6.6 compatibility
* include Python 3 apt packages in travis build script
* use Python 3.6 in Travis
* Enable _blake2 and _sha3 in Python 3. Remove unnecessary files.
* change zope.interface version
* update cffi version
2018-10-07 15:59:03 +01:00

14 lines
491 B
Diff

--- a/setup.py 2016-06-10 14:56:35.000000000 +0100
+++ b/setup.py 2018-09-29 09:28:25.676203522 +0100
@@ -139,9 +139,8 @@
"Topic :: Software Development :: Libraries :: Python Modules",
],
- packages = ['zope', 'zope.interface', 'zope.interface.tests'],
+ packages = ['zope', 'zope.interface'],
package_dir = {'': 'src'},
cmdclass = {'build_ext': optional_build_ext,
},
- test_suite = 'zope.interface.tests',
**extra)