Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies = [
"numpy>=2.1",
"tqdm>=4.67.1",
"pydot>=4.0.0",
"hugr>=0.13.0",
"hugr~=0.14.0",
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We've intentionally left the upper bound unspecified to decouple selene from guppy/hugr minor updates. Since the hugr interface used by selene is small this is pretty safe.

Guppy already has tested that selene works fine with 3.14 since it is used in the integration tests. I think that is sufficient, this PR can be simply a bump in the guppy commit used by selene tests (since the selene CI does not run any python version other than 3.10 anyway)

]
authors = [
{ name = "Jake Arkinstall", email = "jake.arkinstall@quantinuum.com" },
Expand Down Expand Up @@ -65,7 +65,7 @@ dev = [
[tool.uv.sources]
selene-sim = { workspace = true }
selene-core = { workspace = true }
guppylang = { git = "https://github.com/CQCL/guppylang", subdirectory = "guppylang", branch = "accept-any-selene" }
guppylang = { git = "https://github.com/CQCL/guppylang", subdirectory = "guppylang", rev = "e5f1e95" }

[tool.uv.workspace]
members = ["selene-core"]
Expand Down Expand Up @@ -143,8 +143,8 @@ environment-pass = [
test-requires = [
"pytest",
"pytest-snapshot",
"git+https://github.com/CQCL/guppylang@accept-any-selene#subdirectory=guppylang",
"git+https://github.com/CQCL/guppylang@accept-any-selene#subdirectory=guppylang-internals",
"git+https://github.com/CQCL/guppylang@e5f1e95#subdirectory=guppylang",
"git+https://github.com/CQCL/guppylang@e5f1e95#subdirectory=guppylang-internals",
"pytket~=2.9.1",
"tket~=0.12.5",
]
Expand Down
Loading
Loading