From 39e91632dc4d37591836daf93bffc3661b339ec3 Mon Sep 17 00:00:00 2001 From: Jonathan Wright Date: Fri, 27 Oct 2023 08:23:42 +0200 Subject: [PATCH] Allow new python versions --- setup.cfg | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index b0fe2a0..1b3bddd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -20,4 +20,4 @@ classifiers = [options] packages = find: -python_requires = >=3.8,<3.11 +python_requires = >=3.8 diff --git a/setup.py b/setup.py index cb20fb7..b94262b 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ "Operating System :: OS Independent", ], packages=setuptools.find_packages(), - python_requires=">=3.8,<3.11", + python_requires=">=3.8", install_requires=["matplotlib", "numpy", "meshio",