Skip to content

Commit

Permalink
Don't install pyscf on windows (#2595)
Browse files Browse the repository at this point in the history
Fixes #2576
  • Loading branch information
frankharkins authored Jan 23, 2025
1 parent 5bc540b commit bb411b3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions scripts/config/notebook-testing.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ notebooks = [
"docs/guides/represent-quantum-computers.ipynb",
"docs/guides/save-circuits.ipynb",
"docs/guides/save-jobs.ipynb",
"docs/guides/serverless-first-program.ipynb",
"docs/guides/serverless-manage-resources.ipynb",
"docs/guides/serverless-run-first-workload.ipynb",
"docs/guides/set-optimization.ipynb",
"docs/guides/simulate-stabilizer-circuits.ipynb",
Expand Down Expand Up @@ -118,4 +116,8 @@ notebooks = [
# This notebook contains undefined variables so can't run at all.
"docs/guides/multiverse-computing-singularity.ipynb",
"docs/guides/function-template-hamiltonian-simulation.ipynb",

# These notebooks are failing with auth errors and need investigating
"docs/guides/serverless-first-program.ipynb",
"docs/guides/serverless-manage-resources.ipynb",
]
2 changes: 1 addition & 1 deletion scripts/nb-tester/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ qiskit-addon-mpf~=0.2.0
qiskit-addon-aqc-tensor~=0.1.2
qiskit-addon-obp~=0.1.0
scipy~=1.15.1
pyscf~=2.8.0
pyscf~=2.8.0; sys.platform != 'win32'

0 comments on commit bb411b3

Please sign in to comment.