Skip to content

Commit

Permalink
build: add missing dep, correct Python constraint (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
qartik authored Nov 17, 2023
1 parent 5109fb3 commit 046907a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
name = "pytket-phir"
description = "A circuit analyzer and translator from pytket to PHIR"
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.10, <3.12"
license = {file = "LICENSE"}
authors = [{name = "Quantinuum"}]

Expand All @@ -23,7 +23,11 @@ classifiers = [
"Typing :: Typed",
]
dynamic = ["version"]
dependencies = ["phir>=0.1.6", "pytket"]
dependencies = [
"phir>=0.1.6",
"pytket-quantinuum",
"pytket",
]

[project.optional-dependencies]
docs = ["sphinx", "pydata_sphinx_theme"]
Expand Down

0 comments on commit 046907a

Please sign in to comment.