From 11f3b9a37a9ab94852c6f061c04417b4eb5b3640 Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Wed, 13 Nov 2024 16:04:51 -0500 Subject: [PATCH] Prepare 0.8.1 (#112) * Don't attempt to install pyscf on Windows It's broken on win32, so lift the dependency there. qiskit-nature does the same * Prepare 0.8.1 release --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6ae35ed..e866f9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "qiskit-addon-sqd" -version = "0.8.0" +version = "0.8.1" readme = "README.md" description = "Classically postprocess noisy quantum samples to yield more accurate energy estimations" license = {file = "LICENSE.txt"} @@ -27,7 +27,7 @@ requires-python = ">=3.9" dependencies = [ "qiskit>=1.2", "numpy>=1.26", - "pyscf>=2.5", + "pyscf>=2.5; sys_platform != 'win32'", "jaxlib>=0.4.30", "jax>=0.4.30", "scipy>=1.13.1",