-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
34 changed files
with
159 additions
and
300 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,6 +85,8 @@ celerybeat-schedule | |
.env | ||
.venv | ||
env/ | ||
env39/ | ||
env311/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# We use compatible release functionality (see PEP 440 here: https://www.python.org/dev/peps/pep-0440/#compatible-release) | ||
# to specify acceptable version ranges of our project dependencies. This gives us the flexibility to keep up with small | ||
# updates/fixes, whilst ensuring we don't install a major update which could introduce backwards incompatible changes. | ||
numpy>=1.20.0,<1.21.0 | ||
pandas>=1.3.5,<1.4.0 | ||
pydantic>=1.8.1,<1.9.0 | ||
scikit-learn>=0.24.2,<0.25.0 | ||
strictyaml>=1.3.2,<1.4.0 | ||
ruamel.yaml==0.16.12 | ||
feature-engine>=1.0.2,<1.3.0 | ||
joblib>=1.0.1,<1.1.0 | ||
numpy>=1.21.0,<2.0.0 | ||
pandas>=1.3.5,<2.0.0 | ||
pydantic>=1.8.1,<2.0.0 | ||
scikit-learn>=1.1.3,<2.0.0 | ||
strictyaml>=1.3.2,<2.0.0 | ||
ruamel.yaml>=0.16.12,<1.0.0 | ||
feature-engine>=1.0.2,<2.0.0 | ||
joblib>=1.0.1,<2.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
-r requirements.txt | ||
|
||
# testing requirements | ||
pytest>=6.2.3,<6.3.0 | ||
|
||
# repo maintenance tooling | ||
black==20.8b1 | ||
flake8>=3.9.0,<3.10.0 | ||
mypy==0.812 | ||
isort==5.8.0 | ||
pytest>=7.2.0,<8.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# repo maintenance tooling | ||
black>=22.12.0,<23.0.0 | ||
flake8>=6.0.0,<7.0.0 | ||
mypy>=0.991,<1.0.0 | ||
isort>=5.11.4,<6.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 8 additions & 8 deletions
16
section-05-production-model-package/requirements/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# We use compatible release functionality (see PEP 440 here: https://www.python.org/dev/peps/pep-0440/#compatible-release) | ||
# to specify acceptable version ranges of our project dependencies. This gives us the flexibility to keep up with small | ||
# updates/fixes, whilst ensuring we don't install a major update which could introduce backwards incompatible changes. | ||
numpy>=1.20.0,<1.21.0 | ||
pandas>=1.3.5,<1.4.0 | ||
pydantic>=1.8.1,<1.9.0 | ||
scikit-learn>=1.0.2,<1.1.0 | ||
strictyaml>=1.3.2,<1.4.0 | ||
ruamel.yaml==0.16.12 | ||
feature-engine>=1.0.2,<1.1.0 | ||
joblib>=1.0.1,<1.1.0 | ||
numpy>=1.21.0,<2.0.0 | ||
pandas>=1.3.5,<2.0.0 | ||
pydantic>=1.8.1,<2.0.0 | ||
scikit-learn>=1.1.3,<2.0.0 | ||
strictyaml>=1.3.2,<2.0.0 | ||
ruamel.yaml>=0.16.12,<1.0.0 | ||
feature-engine>=1.0.2,<2.0.0 | ||
joblib>=1.0.1,<2.0.0 |
8 changes: 1 addition & 7 deletions
8
section-05-production-model-package/requirements/test_requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
-r requirements.txt | ||
|
||
# testing requirements | ||
pytest>=6.2.3,<6.3.0 | ||
|
||
# repo maintenance tooling | ||
black>=22.0.0,<23.0.0 | ||
flake8>=3.9.0,<3.10.0 | ||
mypy==0.812 | ||
isort==5.8.0 | ||
pytest>=7.2.0,<8.0.0 |
5 changes: 5 additions & 0 deletions
5
section-05-production-model-package/requirements/typing_requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# repo maintenance tooling | ||
black>=22.12.0,<23.0.0 | ||
flake8>=6.0.0,<7.0.0 | ||
mypy>=0.991,<1.0.0 | ||
isort>=5.11.4,<6.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
section-06-model-serving-api/house-prices-api/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
uvicorn>=0.16.0,<0.18.0 | ||
fastapi>=0.64.0,<1.0.0 | ||
uvicorn>=0.20.0,<0.30.0 | ||
fastapi>=0.88.0,<1.0.0 | ||
python-multipart>=0.0.5,<0.1.0 | ||
pydantic>=1.8.1,<1.10.0 | ||
typing_extensions>=3.7.4,<4.0.0 | ||
loguru>=0.5.3,<0.6.0 | ||
pydantic>=1.10.4,<1.12.0 | ||
typing_extensions>=4.2.0,<5.0.0 | ||
loguru>=0.5.3,<1.0.0 | ||
# We will explain this in the course | ||
tid-regression-model==3.0.3 | ||
tid-regression-model>=3.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
python-3.9.5 | ||
python-3.11.1 |
11 changes: 3 additions & 8 deletions
11
section-06-model-serving-api/house-prices-api/test_requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
-r requirements.txt | ||
|
||
# testing requirements | ||
pytest>=6.2.3,<6.3.0 | ||
requests>=2.23.0,<2.24.0 | ||
|
||
# repo maintenance tooling | ||
black>=22.0.0,<23.0.0 | ||
flake8>=3.9.0,<3.10.0 | ||
mypy==0.812 | ||
isort==5.8.0 | ||
pytest>=7.2.0,<8.0.0 | ||
requests>=2.28.0,<2.50.0 | ||
httpx>=0.23.2,<0.50.0 |
Oops, something went wrong.