Skip to content

Commit 87190cb

Browse files
committed
revert: Revert "fix: Change numpy version on setup.py and upgrade it to resolve dependabot warning (#2887)"
This reverts commit b9190b9. Signed-off-by: Danny Chiao <[email protected]>
1 parent efadb22 commit 87190cb

File tree

11 files changed

+1121
-71
lines changed

11 files changed

+1121
-71
lines changed

java/serving/src/test/resources/docker-compose/feast10/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8
1+
FROM python:3.7
22

33
WORKDIR /usr/src/
44

sdk/python/feast/driver_test_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def create_driver_hourly_stats_df(drivers, start_date, end_date) -> pd.DataFrame
9898
"event_timestamp": [
9999
pd.Timestamp(dt, unit="ms", tz="UTC").round("ms")
100100
for dt in pd.date_range(
101-
start=start_date, end=end_date, freq="1H", inclusive="left"
101+
start=start_date, end=end_date, freq="1H", closed="left"
102102
)
103103
]
104104
# include a fixed timestamp for get_historical_features in the quickstart

sdk/python/requirements/py3.10-ci-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ nbformat==5.4.0
384384
# via great-expectations
385385
nodeenv==1.7.0
386386
# via pre-commit
387-
numpy==1.22.0
387+
numpy==1.21.6
388388
# via
389389
# altair
390390
# feast (setup.py)

sdk/python/requirements/py3.10-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ mypy==0.961
8787
# via sqlalchemy
8888
mypy-extensions==0.4.3
8989
# via mypy
90-
numpy==1.22.0
90+
numpy==1.21.6
9191
# via
9292
# feast (setup.py)
9393
# pandas

0 commit comments

Comments
 (0)