From f10d12c9627b7c3cd8b266de5e03f187529fed97 Mon Sep 17 00:00:00 2001 From: Wong Zi Cheng <70616433+chmwzc@users.noreply.github.com> Date: Wed, 19 Jul 2023 10:12:31 +0000 Subject: [PATCH] Update pyproject.toml for installing on Windows Allow Python3.8 and don't install PySCF if on Windows OS --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e852f15..884ddda 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"]