Skip to content

Commit

Permalink
fix: Change numpy version on setup.py and upgrade it to resolve depen…
Browse files Browse the repository at this point in the history
…dabot warning (#2887)

* Upgrade numpy version on setup.py and resolve dependabot warning

Signed-off-by: Breno Costa <brenocosta0901@gmail.com>

* Upgrade python base image from 3.7 to 3.8

Signed-off-by: Breno Costa <brenocosta0901@gmail.com>
  • Loading branch information
breno-costa committed Jun 30, 2022
1 parent d044588 commit 80ea7a9
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
@@ -1,4 +1,4 @@
FROM python:3.7
FROM python:3.8

WORKDIR /usr/src/

Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.10-ci-requirements.txt
Expand Up @@ -384,7 +384,7 @@ nbformat==5.4.0
# via great-expectations
nodeenv==1.6.0
# via pre-commit
numpy==1.21.6
numpy==1.22.0
# via
# altair
# feast (setup.py)
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.10-requirements.txt
Expand Up @@ -89,7 +89,7 @@ mypy==0.961
# via sqlalchemy
mypy-extensions==0.4.3
# via mypy
numpy==1.21.6
numpy==1.22.0
# via
# feast (setup.py)
# pandas
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.8-ci-requirements.txt
Expand Up @@ -390,7 +390,7 @@ nbformat==5.4.0
# via great-expectations
nodeenv==1.6.0
# via pre-commit
numpy==1.21.6
numpy==1.22.0
# via
# altair
# feast (setup.py)
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.8-requirements.txt
Expand Up @@ -91,7 +91,7 @@ mypy==0.961
# via sqlalchemy
mypy-extensions==0.4.3
# via mypy
numpy==1.21.6
numpy==1.22.0
# via
# feast (setup.py)
# pandas
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.9-ci-requirements.txt
Expand Up @@ -384,7 +384,7 @@ nbformat==5.4.0
# via great-expectations
nodeenv==1.6.0
# via pre-commit
numpy==1.21.6
numpy==1.22.0
# via
# altair
# feast (setup.py)
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.9-requirements.txt
Expand Up @@ -89,7 +89,7 @@ mypy==0.961
# via sqlalchemy
mypy-extensions==0.4.3
# via mypy
numpy==1.21.6
numpy==1.22.0
# via
# feast (setup.py)
# pandas
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -57,7 +57,7 @@
"Jinja2>=2,<4",
"jsonschema",
"mmh3",
"numpy<1.22,<2",
"numpy>=1.22,<2",
"pandas>=1,<2",
"pandavro==1.5.*",
"protobuf>=3.10,<3.20",
Expand Down

0 comments on commit 80ea7a9

Please sign in to comment.