From 50cf2ff4c250095d83e85d13a1f94d8e5e6b5878 Mon Sep 17 00:00:00 2001 From: Robin Kupper Date: Sat, 27 May 2023 11:52:14 +0200 Subject: [PATCH] Upgraded dependencies for python 3.11 --- setup.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/setup.py b/setup.py index 62c38e6..12ce337 100644 --- a/setup.py +++ b/setup.py @@ -13,16 +13,16 @@ packages=find_packages(exclude=["contrib", "docs", "tests"]), python_requires=">=3.8, <4", install_requires=[ - "numpy~=1.21", - "scipy~=1.7.0", - "scikit-learn~=0.24.2", - "matplotlib~=3.4.2", - "seaborn~=0.11.1", - "pandas~=1.3.1", - "tensorflow~=2.8.0", - "tensorflow-probability~=0.15.0", - "keras~=2.8.0", - "sympy~=1.9", + "numpy~=1.23", + "scipy~=1.10", + "scikit-learn~=0.24", + "matplotlib~=3.4", + "seaborn~=0.11", + "pandas~=1.3", + "tensorflow~=2.12", + "tensorflow-probability~=0.20", + "keras~=2.12", + "sympy~=1.12", "tqdm", ], project_urls={