Skip to content

Commit ea06eaa

Browse files
Update pyproject.toml
<=3.12 means that 3.12.x with x>0 would not be allowed. Can we change this requirement to <3.13, so that python 3.12.x with any x would work? Thanks.
1 parent b48055c commit ea06eaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "Python implementation of the sscha code"
99
authors = [{name = "Lorenzo Monacelli"}] # Put here email
1010
readme = "README.md"
1111
license = {file = "LICENSE.txt"}
12-
requires-python = ">=3.8,<=3.12" # Updated to specify Python 3.8 to 3.12
12+
requires-python = ">=3.8,<3.13" # Updated to specify Python 3.8 to 3.12
1313
dependencies = [
1414
"numpy",
1515
"ase",

0 commit comments

Comments
 (0)