Skip to content

Commit 08bfc7a

Browse files
fix pandas dependency bug (#792)
1 parent aaeb3e6 commit 08bfc7a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

section-05-production-model-package/requirements/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# to specify acceptable version ranges of our project dependencies. This gives us the flexibility to keep up with small
33
# updates/fixes, whilst ensuring we don't install a major update which could introduce backwards incompatible changes.
44
numpy>=1.20.0,<1.21.0
5-
pandas>=1.2.0,<1.3.0
5+
pandas>=1.3.5,<1.4.0
66
pydantic>=1.8.1,<1.9.0
77
scikit-learn>=0.24.0,<0.25.0
88
strictyaml>=1.3.2,<1.4.0

section-06-model-serving-api/house-prices-api/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ pydantic>=1.8.1,<1.9.0
55
typing_extensions>=3.7.4,<3.8.0
66
loguru>=0.5.3,<0.6.0
77
# We will explain this in the course
8-
tid-regression-model==3.0.1
8+
tid-regression-model==3.0.3

section-07-ci-and-publishing/model-package/requirements/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# to specify acceptable version ranges of our project dependencies. This gives us the flexibility to keep up with small
33
# updates/fixes, whilst ensuring we don't install a major update which could introduce backwards incompatible changes.
44
numpy>=1.20.0,<1.21.0
5-
pandas>=1.2.0,<1.3.0
5+
pandas>=1.3.5,<1.4.0
66
pydantic>=1.8.1,<1.9.0
77
scikit-learn>=0.24.0,<0.25.0
88
strictyaml>=1.3.2,<1.4.0

0 commit comments

Comments
 (0)