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
6 changes: 3 additions & 3 deletions .github/workflows/all-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
pyver: ["3.12"]
uses: Quantinuum/pytket-workflows/.github/workflows/static-checks-wf.yml@v0.0.10
uses: Quantinuum/pytket-workflows/.github/workflows/static-checks-wf.yml@v1
with:
os: ${{ matrix.os }}
pyver: ${{ matrix.pyver }}
Expand All @@ -35,7 +35,7 @@ jobs:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
pyver: ["3.10", "3.13"]
uses: Quantinuum/pytket-workflows/.github/workflows/unit-test-wf.yml@v0.0.10
uses: Quantinuum/pytket-workflows/.github/workflows/unit-test-wf.yml@v1
with:
os: ${{ matrix.os }}
pyver: ${{ matrix.pyver }}
Expand All @@ -46,7 +46,7 @@ jobs:
matrix:
os: ["ubuntu-latest"]
pyver: ["3.11"]
uses: Quantinuum/pytket-workflows/.github/workflows/unit-test-remote-wf.yml@v0.0.12
uses: Quantinuum/pytket-workflows/.github/workflows/unit-test-remote-wf.yml@v1
with:
os: ${{ matrix.os }}
pyver: ${{ matrix.pyver }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ on:
jobs:
check-docs:
name: Build docs and create artefact
uses: Quantinuum/pytket-workflows/.github/workflows/docs-wf.yml@v0.0.10
uses: Quantinuum/pytket-workflows/.github/workflows/docs-wf.yml@v1
with:
extname: "pytket-iqm"
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
build-and-publish:
name: Build, test, and store artifact, and upload to pypi
uses: Quantinuum/pytket-workflows/.github/workflows/release-wf.yml@v0.0.10
uses: Quantinuum/pytket-workflows/.github/workflows/release-wf.yml@v1
with:
pyver: "3.10"
publish: ${{ github.event_name == 'release' }}
Expand Down
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,16 @@ You should run `ruff` over any changed files before submitting a PR, to catch an

An easy way to meet all formatting and linting requirements is to issue `pre-commit run --all-files`.

If you are using uv running `uv run pre-commit run --all-files --show-diff-on-failure` will install the package and run all the checks.

### Tests

To run the tests for a module:
To run the tests for this module:

1. `cd` into that module's `tests` directory;
2. ensure you have installed `pytest`, `hypothesis`, and any modules listed in
the `test-requirements.txt` file (all via `pip`);
3. run `pytest`.
1. ensure you have installed `pytest`, `hypothesis`, and any modules listed in
the `dev-dependencies` section of the `pyproject.toml` file;
(If you are using uv this will be picked up automatically.)
2. run `pytest`.

When adding a new feature, please add a test for it. When fixing a bug, please
add a test that demonstrates the fix.
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Changelog
~~~~~~~~~

0.18.0 (January 2026)
---------------------

* Updated pytket version requirement to 2.11.

0.17.0 (October 2025)
---------------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers = [
"Topic :: Scientific/Engineering",
]
dependencies = [
"pytket >= 2.10.2",
"pytket >= 2.11.0",
"iqm-client ~= 22.3",
]

Expand Down
2 changes: 1 addition & 1 deletion pytket/extensions/iqm/_metadata.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__extension_version__ = "0.17.0"
__extension_version__ = "0.18.0"
__extension_name__ = "pytket-iqm"
Loading