Skip to content

Commit

Permalink
Update pyproject.toml for installing on Windows
Browse files Browse the repository at this point in the history
Allow Python3.8 and don't install PySCF if on Windows OS
  • Loading branch information
chmwzc committed Jul 19, 2023
1 parent 28a408f commit f10d12c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ classifiers = [
packages = [{ include = "qibochem", from = "src" }]

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.8"
scipy = "^1.10.1"
qibo = "^0.1.10"
openfermion = "^1.5"
pyscf = "^2.2.1"
pyscf = {version = "^2.2.1", markers = "sys_platform != 'win32'"}

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit f10d12c

Please sign in to comment.