Update the dependencies to up-to-date versions

This commit is contained in:
Alexander Hess 2024-04-08 15:44:35 +02:00
parent 73432b9060
commit 950909547c
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
2 changed files with 1775 additions and 1055 deletions

2809
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,29 +1,26 @@
[build-system] [build-system]
requires = ["poetry>=0.12"] requires = ["poetry-core"]
build-backend = "poetry.masonry.api" build-backend = "poetry.core.masonry.api"
[tool.poetry] [tool.poetry]
name = "intro-to-python" name = "intro-to-python"
version = "0.1.0.dev0" version = "0.1.0.dev0"
package-mode = false
authors = ["Alexander Hess <alexander@webartifex.biz>"] authors = ["Alexander Hess <alexander@webartifex.biz>"]
description = "An intro to Python & programming for wanna-be data scientists" description = "An intro to Python & programming for wanna-be data scientists"
license = "MIT" license = "MIT"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.8" python = "^3.11"
jupyterlab = "^2.2.8" jupyterlab = "^4.1.0"
numpy = "^1.19.2" numpy = "^1.26.0"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
# Task runners # Task runners
nox = "^2020.8.22" nox = "^2024.3.2"
pre-commit = "^2.7.1" pre-commit = "^3.7.0"
# Testing # Testing
xdoctest = "^0.15.0" xdoctest = "^1.1.0"
# Live coding during presentation mode
jupyter-contrib-nbextensions = "^0.5.1"
rise = "^5.6.1"