Skip to content

Commit

Permalink
Merge pull request #75 from CQCL/release/pytket-1-23
Browse files Browse the repository at this point in the history
Release 0.31.0
  • Loading branch information
cqc-melf authored Jan 10, 2024
2 parents 8629579 + bdec0f7 commit de79355
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 11 deletions.
15 changes: 15 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Description

Please summarise the changes.

# Related issues

Please mention any github issues addressed by this PR.

# Checklist

- [ ] I have performed a self-review of my code.
- [ ] I have commented hard-to-understand parts of my code.
- [ ] I have made corresponding changes to the public API documentation.
- [ ] I have added tests that prove my fix is effective or that my feature works.
- [ ] I have updated the changelog with any user-facing changes.
4 changes: 2 additions & 2 deletions .github/workflows/nox-session.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python ${{ inputs.python-version }}
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
- name: Upload coverage data
if: inputs.nox-session == 'tests' && inputs.generate-coverage-report
uses: "actions/upload-artifact@v3"
uses: "actions/upload-artifact@v4"
with:
name: coverage_report
path: "coverage_report"
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fetch-depth: "0"
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* +refs/heads/*:refs/remotes/origin/*
- name: Set up Python 3.10
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Upgrade pip
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
run: |
poetry build --format wheel --ansi
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: aqt-wheels
path: dist/
Expand All @@ -76,7 +76,7 @@ jobs:
nox -s docs-build --python=${{ env.PYTHON_VERSION }} -- -d docs/extensions/api
- name: Upload docs as artefact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
path: docs/extensions

Expand All @@ -87,7 +87,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Download all wheels
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: aqt-wheels
path: dist
Expand Down Expand Up @@ -115,4 +115,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4.0.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ with tket, a quantum computing toolkit and optimising compiler developed by Quan
`pytket-aqt` is an extension to `pytket` that allows `pytket` circuits to be
executed on AQT's ([Alpine Quantum Technologies'](https://www.aqt.eu/)) quantum devices and simulators.

See [extension documentation](https://tket.quantinuum.com/extensions/pytket-aqt/api/index.html) for more.
See [extension documentation](https://cqcl.github.io/pytket-aqt/api/index.html) for more.

## Getting started

Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
~~~~~~~~~

0.31.0 (January 2024)
---------------------

* Updated pytket version requirement to 1.23.

0.30.0 (November 2023)
----------------------

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tool.poetry]
name = "pytket-aqt"
version = "0.30.0"
version = "0.31.0"
description = "Extension for pytket, providing access to AQT backends"
authors = ["TKET development team <tket-support@cambridgequantum.com>"]
license = "Apache 2"
readme = "README.md"
packages = [{include = "pytket"}]
repository = "https://github.com/CQCL/pytket-aqt"
documentation = "https://tket.quantinuum.com/extensions/pytket-aqt/api/index.html"
documentation = "https://cqcl.github.io/pytket-aqt/api/index.html"
classifiers= [
"Environment :: Console",
"Programming Language :: Python :: 3.10",
Expand All @@ -26,7 +26,7 @@ classifiers= [

[tool.poetry.dependencies]
python = ">=3.10, <3.12"
pytket = "^1.22"
pytket = "^1.23"
requests = "^2.22"
types-requests = "*"
pydantic = "^2.0"
Expand Down

0 comments on commit de79355

Please sign in to comment.