Skip to content

Commit

Permalink
[r2] fix ase version with Python 3.7
Browse files Browse the repository at this point in the history
Signed-off-by: Jinzhe Zeng <[email protected]>
  • Loading branch information
njzjz committed Jul 3, 2024
1 parent ad6f006 commit 526b785
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ test = [
"dpdata>=0.2.7",
# ASE issue: https://gitlab.com/ase/ase/-/merge_requests/2843
# fixed in 3.23.0
"ase>=3.23.0",
# ase>=3.23.0 requires python>=3.8; luckily, we don't test i-PI with python<3.8
'ase>=3.23.0;python_version>="3.8"',
'ase;python_version<"3.8"',
"pytest",
"pytest-cov",
"pytest-sugar",
Expand Down

0 comments on commit 526b785

Please sign in to comment.