Skip to content

Commit

Permalink
Merge pull request #9 from IAlibay/fix-py312
Browse files Browse the repository at this point in the history
minimal py3.12 fix
  • Loading branch information
DSeiferth authored Nov 12, 2024
2 parents f9ddac9 + 58f828d commit c2506c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -37,5 +36,6 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)

0 comments on commit c2506c7

Please sign in to comment.