Skip to content

Commit

Permalink
specify python req
Browse files Browse the repository at this point in the history
  • Loading branch information
DSeiferth committed Oct 8, 2024
1 parent a04a932 commit a107a1e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ license = {file = "LICENSE"}
readme = {file = "README.md", content-type = "text/markdown"}
description = "PoreAnalyser package based on HOLE and MDAnalysis"
version = "0.0.7"
requires-python = ">=3.6"
requires-python = ">=3.6,<=3.12"
dependencies = [
'python<=3.12',
#'python<=3.12',
'numpy >=1.0, <1.23.0',
'MDAnalysis >=2.0, <3.0',
'matplotlib>=0.1',
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
python<=3.12
#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 Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
url='https://poreanalyser.bioch.ox.ac.uk/',
author='David Seiferth',
author_email='[email protected]',
python_requires='>=3.6,<=3.12',
#license='BSD 2-clause',
packages=['PoreAnalyser'],
install_requires=[
'python<=3.12',
#'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 Down

0 comments on commit a107a1e

Please sign in to comment.