Update the (un-pinned) dependencies
This commit is contained in:
parent
c4cf51275f
commit
44b4ec17d3
2 changed files with 18 additions and 16 deletions
|
@ -41,7 +41,7 @@ To learn about Python and programming in detail,
|
||||||
|
|
||||||
### Getting started & Installation
|
### Getting started & Installation
|
||||||
|
|
||||||
To follow this workshop, an installation of **Python 3.8** or higher is expected.
|
To follow this workshop, an installation of **Python 3.9** or higher is expected.
|
||||||
|
|
||||||
A popular and beginner friendly way is
|
A popular and beginner friendly way is
|
||||||
to install the [Anaconda Distribution](https://www.anaconda.com/products/individual)
|
to install the [Anaconda Distribution](https://www.anaconda.com/products/individual)
|
||||||
|
|
|
@ -29,20 +29,22 @@ package-mode = false
|
||||||
|
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.8"
|
python = "^3.9"
|
||||||
jupyterlab = "^3.0.16"
|
|
||||||
missingno = "^0.4.2"
|
jupyterlab = "^4.2"
|
||||||
matplotlib = "^3.4.2"
|
|
||||||
numpy = "^1.20.3"
|
matplotlib = "^3.9"
|
||||||
pandas = "^1.2.4"
|
missingno = "^0.5"
|
||||||
requests = "^2.25.1"
|
numpy = "^2.0"
|
||||||
scikit-learn = "^0.24.2"
|
pandas = "^2.2"
|
||||||
seaborn = "^0.11.1"
|
requests = "^2.32"
|
||||||
statsmodels = "^0.12.2"
|
scikit-learn = "^1.5"
|
||||||
tabulate = "^0.8.9"
|
seaborn = "^0.13"
|
||||||
tqdm = "^4.61.0"
|
statsmodels = "^0.14"
|
||||||
xlrd = "^2.0.1"
|
tabulate = "^0.9"
|
||||||
|
tqdm = "^4.66"
|
||||||
|
xlrd = "^2.0"
|
||||||
|
|
||||||
[tool.poetry.group.dev.dependencies]
|
[tool.poetry.group.dev.dependencies]
|
||||||
black = "^21.5b1"
|
black = {extras = ["jupyter"], version = "^24.4"}
|
||||||
pylint = "^2.8.2"
|
pylint = "^3.2"
|
||||||
|
|
Loading…
Reference in a new issue