From b884dd667fd100abd311e3c1fa516bbf1a88d425 Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Wed, 13 Nov 2024 15:53:44 -0500 Subject: [PATCH 1/2] Don't attempt to install pyscf on Windows It's broken on win32, so lift the dependency there. qiskit-nature does the same --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6ae35ed..bfef342 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", From 1602589d8756e246bb14c3a1f4be4084fdd0395a Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Wed, 13 Nov 2024 15:57:19 -0500 Subject: [PATCH 2/2] Prepare 0.8.1 release --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bfef342..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"}