From 9ac79a305e7a56aacdca01b30bd906f892e2b846 Mon Sep 17 00:00:00 2001 From: Andreas Leitherer <leitherer@fhi-berlin.mpg.de> Date: Wed, 16 Dec 2020 12:03:15 +0100 Subject: [PATCH] Changed setup.py file with new dependencies, solving import error and numpy warnings --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6f33a24..b6cea0d 100644 --- a/setup.py +++ b/setup.py @@ -13,5 +13,5 @@ setup( description=metainfo['title'], long_description=metainfo['description'], packages=find_packages(), - install_requires=['tensorflow<2.0', 'keras', 'numpy', 'scipy', 'matplotlib', 'pandas', 'seaborn', 'pymatgen', 'sklearn'], + install_requires=['tensorflow==1.14.0', 'keras==2.3.0', 'numpy==1.16.4', 'scipy', 'matplotlib', 'pandas', 'seaborn', 'pymatgen==2020.3.13', 'sklearn'], ) -- GitLab