Upgrade the project to Python 3.7

This commit is contained in:
Alexander Hess 2020-09-16 23:31:34 +02:00
commit e2d0b93f8b
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
4 changed files with 980 additions and 296 deletions

View file

@ -1,20 +1,20 @@
[tool.poetry]
name = "workshop-machine-learning-for-beginners"
version = "0.1.0"
description = "An introductory workshop on machine learning"
authors = ["Alexander Hess <alexander@webartifex.biz>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.6"
jupyter = "^1.0"
numpy = "^1.17"
matplotlib = "^3.1"
pandas = "^0.25"
scikit-learn = "^0.22"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "workshop-machine-learning-for-beginners"
version = "0.1.0"
authors = ["Alexander Hess <alexander@webartifex.biz>"]
description = "An introductory workshop on machine learning"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
jupyterlab = "^2.2.8"
matplotlib = "^3.3.2"
numpy = "^1.19.2"
pandas = "^1.1.2"
scikit-learn = "^0.23.2"