From 58f828dd93d579cc24e12e4677f24ac4f05c6df9 Mon Sep 17 00:00:00 2001 From: IAlibay Date: Sun, 10 Nov 2024 14:50:52 +0000 Subject: [PATCH] minimal py3.12 fix --- pyproject.toml | 3 +-- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e5e1792..402d003 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,9 +9,8 @@ license = {file = "LICENSE"} readme = {file = "README.md", content-type = "text/markdown"} description = "PoreAnalyser package based on HOLE and MDAnalysis" version = "0.0.11" -requires-python = ">=3.6,<=3.12" +requires-python = ">=3.6,<3.13" dependencies = [ -#'python<=3.12', 'numpy >=1.0', 'MDAnalysis >=2.0, <3.0', 'matplotlib>=0.1', diff --git a/setup.py b/setup.py index 2646e0b..655a343 100644 --- a/setup.py +++ b/setup.py @@ -9,11 +9,10 @@ url='https://poreanalyser.bioch.ox.ac.uk/', author='David Seiferth', author_email='david.seiferth@oriel.ox.ac.uk', - python_requires='>=3.6,<=3.12', + python_requires='>=3.6,<3.13', #license='BSD 2-clause', packages=['PoreAnalyser'], install_requires=[ - #'python<=3.12', 'numpy>=1.0', # 1.22.0 'MDAnalysis>=2.0,<3.0', #2.0.0 'matplotlib>=0.1', # 3.5.1 for base , for inline 0.1.3 @@ -37,5 +36,6 @@ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ], )