Skip to content

Commit

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

This reverts commit b9190b9.

Signed-off-by: Danny Chiao <danny@tecton.ai>
  • Loading branch information
adchia committed Jul 29, 2022
1 parent efadb22 commit 87190cb
Show file tree
Hide file tree
Showing 11 changed files with 1,121 additions and 71 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8
FROM python:3.7

WORKDIR /usr/src/

Expand Down
2 changes: 1 addition & 1 deletion sdk/python/feast/driver_test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def create_driver_hourly_stats_df(drivers, start_date, end_date) -> pd.DataFrame
"event_timestamp": [
pd.Timestamp(dt, unit="ms", tz="UTC").round("ms")
for dt in pd.date_range(
start=start_date, end=end_date, freq="1H", inclusive="left"
start=start_date, end=end_date, freq="1H", closed="left"
)
]
# include a fixed timestamp for get_historical_features in the quickstart
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.10-ci-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ nbformat==5.4.0
# via great-expectations
nodeenv==1.7.0
# via pre-commit
numpy==1.22.0
numpy==1.21.6
# via
# altair
# feast (setup.py)
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.10-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ mypy==0.961
# via sqlalchemy
mypy-extensions==0.4.3
# via mypy
numpy==1.22.0
numpy==1.21.6
# via
# feast (setup.py)
# pandas
Expand Down
Loading

0 comments on commit 87190cb

Please sign in to comment.