From 1ad81fb4cb9589b298239fb453995004caad474b Mon Sep 17 00:00:00 2001 From: First Coder Date: Wed, 3 Mar 2021 15:34:24 -0800 Subject: [PATCH] Fix python version requirements. --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 5244472c..2f2c181c 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ name="pymatgen-diffusion", packages=find_packages(), version="2020.10.8", - install_requires=["pymatgen>=2019.10.3", "monty>=3.0.2"], + install_requires=["pymatgen>=2020.12.31"], extras_require={}, package_data={}, author="materials virtual lab", @@ -29,9 +29,8 @@ keywords=["VASP", "diffusion", "molecular dynamics", "MD"], classifiers=[ "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License",