Merge branch 'develop' into main

This commit is contained in:
Alexander Hess 2024-07-15 12:16:36 +02:00
commit cc56869d98
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
18 changed files with 2793 additions and 1429 deletions

View file

@ -1,10 +1,11 @@
[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "intro-to-data-science"
version = "0.1.0"
version = "0.3.0"
authors = [
"Alexander Hess <alexander@webartifex.biz>",
@ -25,13 +26,18 @@ readme = "README.md"
homepage = "https://github.com/webartifex/intro-to-data-science"
repository = "https://github.com/webartifex/intro-to-data-science"
package-mode = false
[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"
jupyterlab = "^3.1"
matplotlib = "^3.4"
numpy = "^1.21"
pandas = "^1.3"
scikit-learn = "^1.0"
jupyterlab = "^4.2"
matplotlib = "^3.9"
numpy = "^2.0"
pandas = "^2.2"
scikit-learn = "^1.5"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
black = {extras = ["jupyter"], version = "^24.4"}
invoke = "^2.2"