diff options
Diffstat (limited to 'dev-python/pybtex/files/pybtex-0.22.2-fix-test-installation.patch')
-rw-r--r-- | dev-python/pybtex/files/pybtex-0.22.2-fix-test-installation.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-python/pybtex/files/pybtex-0.22.2-fix-test-installation.patch b/dev-python/pybtex/files/pybtex-0.22.2-fix-test-installation.patch new file mode 100644 index 000000000000..a5420314fd75 --- /dev/null +++ b/dev-python/pybtex/files/pybtex-0.22.2-fix-test-installation.patch @@ -0,0 +1,11 @@ +--- a/setup.py 2020-06-02 10:46:54.592360043 +0100 ++++ b/setup.py 2020-06-02 10:47:00.482302281 +0100 +@@ -82,7 +82,7 @@ + ], + install_requires=install_requires, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*', +- packages=find_packages(exclude=['docs']), ++ packages=find_packages(exclude=['docs', 'tests*']), + include_package_data=True, + cmdclass={'sdist': Sdist}, + entry_points={ |