Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

forbid numpy 2.0 #12

Merged
merged 14 commits into from
Jun 19, 2024
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,12 @@ jobs:
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
env:
JULIA_CONDAPKG_VERBOSITY: "1"
- uses: julia-actions/julia-runtest@v1
env:
JULIA_NUM_THREADS: ${{ matrix.threads }}
JULIA_CONDAPKG_VERBOSITY: "1"
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
with:
Expand Down
7 changes: 3 additions & 4 deletions CondaPkg.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

[pip.deps]
pymatching = ""
ldpc = ""
numpy = ""
numpy = "<2"
scipy = ""
pymatching = ""
ldpc = "@https://github.com/QuantumSavory/ldpc/archive/refs/heads/numpy2.zip"
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PyQDecoders"
uuid = "17f5de1a-9b79-4409-a58d-4d45812840f7"
authors = ["Stefan Krastanov <[email protected]>"]
version = "0.2.0"
version = "0.2.1"

[deps]
PythonCall = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d"
Expand Down
Loading