From f31bd74e041598db16352107d8f8ee9bd151ae69 Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Fri, 12 Feb 2021 16:46:31 +0100 Subject: [PATCH 1/2] Limit to Python 3.5 --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 79ee44a..b7e186c 100644 --- a/setup.py +++ b/setup.py @@ -15,11 +15,12 @@ 'License :: OSI Approved :: BSD License', 'Intended Audience :: Science/Research', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7'], + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9' + ], keywords='lammps, mpi4py', packages=find_packages(exclude=["*tests*"]), From 920fa1f4579b8a9633e3be65da9af3cff953122e Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Fri, 12 Feb 2021 16:49:11 +0100 Subject: [PATCH 2/2] Update setup.py --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index b7e186c..19705b4 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,6 @@ 'License :: OSI Approved :: BSD License', 'Intended Audience :: Science/Research', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8',