1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00

www/py-quilt3: Do not install tests module

- Bump PORTREVISION for package change

PR:		262759
Reported by:	se
This commit is contained in:
Po-Chuan Hsieh 2022-03-25 21:05:47 +08:00
parent 2f7a117966
commit 5d96194792
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
2 changed files with 10 additions and 18 deletions

View File

@ -2,7 +2,7 @@
PORTNAME= quilt3
PORTVERSION= 3.6.0
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,19 +1,11 @@
--- setup.py.orig 2021-10-15 18:41:22 UTC
+++ setup.py
@@ -64,13 +64,13 @@ setup(
'flask',
'flask_cors',
'flask_json',
- 'jsonlines==1.2.0',
+ 'jsonlines>=1.2.0',
'PyYAML>=5.1',
'requests>=2.12.4',
'tenacity>=5.1.1',
'tqdm>=4.32',
- 'requests_futures==1.0.0',
- 'jsonschema==3.*',
+ 'requests_futures>=1.0.0',
+ 'jsonschema>=3,<5',
],
extras_require={
'pyarrow': [
@@ -38,7 +38,7 @@ class VerifyVersionCommand(install):
setup(
name="quilt3",
version=VERSION,
- packages=find_packages(),
+ packages=find_packages(exclude=['tests*']),
description='Quilt: where data comes together',
long_description=readme(),
python_requires='>=3.6',