Skip to content

Commit

Permalink
🔧 refined dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
burgholzer committed Apr 30, 2024
1 parent 49e1df4 commit 6879d0a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,16 @@ classifiers = [
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.24",
"numpy>=1.24; python_version < '3.12'",
"numpy>=1.26; python_version >= '3.12'",
"networkx>=3.0",
"scipy>=1.10",
"h5py>=3.7",
"scipy>=1.10; python_version < '3.12'",
"scipy>=1.12; python_version >= '3.12'",
"h5py>=3.8; python_version >= '3.11'",
"h5py>=3.10; python_version >= '3.12'",
"tensornetwork>=0.4",
"matplotlib>=3.7",
"matplotlib>=3.7; python_version < '3.12'",
"matplotlib>=3.8; python_version >= '3.12'",
]
dynamic = ["version"]

Expand Down

0 comments on commit 6879d0a

Please sign in to comment.