fix: pin numpy version (#17487)

This commit is contained in:
Imri Paran 2024-08-20 12:19:05 +02:00 committed by GitHub
parent 5da7bb049c
commit a59eb2a3cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -65,6 +65,7 @@ COMMONS = {
VERSIONS["boto3"],
VERSIONS["pandas"],
VERSIONS["pyarrow"],
VERSIONS["numpy"],
# python-snappy does not work well on 3.11 https://github.com/aio-libs/aiokafka/discussions/931
# Using this as an alternative
"cramjam~=2.7",
@ -161,7 +162,7 @@ plugins: Dict[str, Set[str]] = {
VERSIONS["numpy"],
"sqlalchemy-bigquery>=1.2.2",
},
"bigtable": {"google-cloud-bigtable>=2.0.0", VERSIONS["pandas"]},
"bigtable": {"google-cloud-bigtable>=2.0.0", VERSIONS["pandas"], VERSIONS["numpy"]},
"clickhouse": {
"clickhouse-driver~=0.2",
"clickhouse-sqlalchemy~=0.2",
@ -259,7 +260,7 @@ plugins: Dict[str, Set[str]] = {
VERSIONS["giturlparse"],
},
"mlflow": {"mlflow-skinny>=2.3.0"},
"mongo": {VERSIONS["mongo"], VERSIONS["pandas"]},
"mongo": {VERSIONS["mongo"], VERSIONS["pandas"], VERSIONS["numpy"]},
"couchbase": {"couchbase~=4.1"},
"mssql": {
"sqlalchemy-pytds~=0.3",
@ -314,6 +315,7 @@ plugins: Dict[str, Set[str]] = {
"pii-processor": {
VERSIONS["spacy"],
VERSIONS["pandas"],
VERSIONS["numpy"],
"presidio-analyzer==2.2.32",
},
}