Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 26 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ wat = "1"
ron = "0.12"
tket = { version = "0.17", default-features = false }
tket-qsystem = { version = "0.23", default-features = false }
# Pin hugr-core to 0.25.6: hugr-core 0.25.7 widened strum to >=0.27.2,<0.29 which lets the
# resolver pick strum 0.28, conflicting with tket 0.17 (requires strum ^0.27).
# hugr-core 0.25.6 uses strum ^0.27.2 so there's no conflict.
# Remove this pin once tket updates to strum 0.28+.
hugr-core = "=0.25.6"
bindgen = "0.72"
cc = "1"
cxx = "1"
Expand Down
3 changes: 3 additions & 0 deletions crates/pecos-guppy-hugr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ serde_json.workspace = true
# HUGR support
tket.workspace = true
tket-qsystem.workspace = true
# Pin hugr-core to 0.25.6 to avoid strum 0.27/0.28 conflict with tket 0.17.
# See workspace Cargo.toml for details. Remove once tket supports strum 0.28+.
hugr-core.workspace = true

# Workspace dependencies
pecos-core.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion python/pecos-rslib-cuda/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pecos-rslib-cuda"
version = "0.8.0.dev6"
version = "0.8.0.dev7"
description = "CUDA/cuQuantum Python bindings for PECOS quantum simulators (Rust implementation)."
authors = [
{name = "The PECOS Developers"},
Expand Down
2 changes: 1 addition & 1 deletion python/pecos-rslib/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pecos-rslib"
version = "0.8.0.dev6"
version = "0.8.0.dev7"
description = "Rust libary extensions for Python PECOS."
authors = [
{name = "The PECOS Developers"},
Expand Down
6 changes: 3 additions & 3 deletions python/quantum-pecos/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ build-backend = "hatchling.build"

[project]
name = "quantum-pecos"
version = "0.8.0.dev6"
version = "0.8.0.dev7"
authors = [
{name = "The PECOS Developers"},
]
Expand All @@ -28,7 +28,7 @@ requires-python = ">=3.10"
license = { file = "LICENSE"}
keywords = ["quantum", "QEC", "simulation", "PECOS"]
dependencies = [
"pecos-rslib==0.8.0.dev6",
"pecos-rslib==0.8.0.dev7",
"phir>=0.3.3",
"networkx>=2.1.0",
"guppylang>=0.21.6",
Expand Down Expand Up @@ -74,7 +74,7 @@ all = [
# These packages work with uv/pip once CUDA toolkit is installed.
# Note: CUDA packages require Python 3.11+ due to cuquantum-python-cu13 requirements
cuda = [
"pecos-rslib-cuda==0.8.0.dev6",
"pecos-rslib-cuda==0.8.0.dev7",
"cupy-cuda13x>=13.0.0; python_version >= '3.11'", # Use cupy-cuda12x for CUDA 12
"cuquantum-python-cu13>=25.3.0; python_version >= '3.11'", # Use cuquantum-python-cu12 for CUDA 12
"pytket-cutensornet>=0.12.0; python_version >= '3.11'",
Expand Down
2 changes: 1 addition & 1 deletion python/selene-plugins/pecos-selene-stab/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pecos-selene-stab"
version = "0.8.0.dev6"
version = "0.8.0.dev7"
requires-python = ">=3.10"
description = "PECOS Stab simulator plugin for the Selene quantum emulator"
readme = "README.md"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pecos-selene-statevec"
version = "0.8.0.dev6"
version = "0.8.0.dev7"
requires-python = ">=3.10"
description = "PECOS StateVec simulator plugin for the Selene quantum emulator"
readme = "README.md"
Expand Down
Loading
Loading