Skip to content

Commit 3835896

Browse files
authored
fix numpy version (#1831)
1 parent 588522a commit 3835896

File tree

2 files changed

+74
-32
lines changed

2 files changed

+74
-32
lines changed

poetry.lock

Lines changed: 70 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ python = ">=3.7.1, <4.0"
3030
boto3 = "^1.24.11"
3131
botocore = "^1.27.11"
3232
pandas = "^1.2.0, <=1.5.1, !=1.5.0" # Exclusion per: https://github.com/aws/aws-sdk-pandas/issues/1678
33-
numpy = "^1.21.0"
33+
numpy = [
34+
{ version = ">=1.21.0 <1.23.4", markers = "python_full_version >= '3.7.1' and python_full_version < '3.11.0'" },
35+
{ version = "^1.23.4", markers = "python_full_version >= '3.11.0'" },
36+
]
3437
pyarrow = ">=2.0.0,<10.1.0"
3538
redshift-connector = "~2.0.889"
3639
pymysql = "^1.0.0"

0 commit comments

Comments
 (0)