Skip to content

Commit d27b324

Browse files
authored
Merge pull request #323 from CQCL/release/1.27.0
Release/1.27.0
2 parents 47fb896 + 6eab05c commit d27b324

19 files changed

+26
-20
lines changed

_metadata.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__extension_version__ = "0.52.0"
1+
__extension_version__ = "0.53.0"
22
__extension_name__ = "pytket-qiskit"

docs/changelog.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
~~~~~~~~~
33

4+
0.53.0 (April 2024)
5+
-------------------
6+
7+
* Updated pytket version requirement to 1.27.
8+
* Update qiskit-ibm-runtime version requirement to 0.23.
9+
410
0.52.0 (April 2024)
511
-------------------
612

pytket/extensions/qiskit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 Cambridge Quantum Computing
1+
# Copyright 2019-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

pytket/extensions/qiskit/backends/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 Cambridge Quantum Computing
1+
# Copyright 2019-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

pytket/extensions/qiskit/backends/aer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 Cambridge Quantum Computing
1+
# Copyright 2019-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

pytket/extensions/qiskit/backends/crosstalk_model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 Cambridge Quantum Computing
1+
# Copyright 2019-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

pytket/extensions/qiskit/backends/ibm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 Cambridge Quantum Computing
1+
# Copyright 2019-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

pytket/extensions/qiskit/backends/ibmq_emulator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 Cambridge Quantum Computing
1+
# Copyright 2019-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

pytket/extensions/qiskit/qiskit_convert.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 Cambridge Quantum Computing
1+
# Copyright 2019-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

pytket/extensions/qiskit/result_convert.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 Cambridge Quantum Computing
1+
# Copyright 2019-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

pytket/extensions/qiskit/tket_backend.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020-2024 Cambridge Quantum Computing
1+
# Copyright 2020-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

pytket/extensions/qiskit/tket_job.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020-2024 Cambridge Quantum Computing
1+
# Copyright 2020-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

pytket/extensions/qiskit/tket_pass.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 Cambridge Quantum Computing
1+
# Copyright 2019-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020-2024 Cambridge Quantum Computing
1+
# Copyright 2020-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -44,10 +44,10 @@
4444
packages=find_namespace_packages(include=["pytket.*"]),
4545
include_package_data=True,
4646
install_requires=[
47-
"pytket ~= 1.26",
47+
"pytket ~= 1.27",
4848
"qiskit ~= 1.0",
4949
"qiskit-algorithms ~= 0.3.0",
50-
"qiskit-ibm-runtime ~= 0.22.0",
50+
"qiskit-ibm-runtime ~= 0.23.0",
5151
"qiskit-aer ~= 0.14.0",
5252
"qiskit-ibm-provider ~= 0.10.0",
5353
"numpy",

tests/backend_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 Cambridge Quantum Computing
1+
# Copyright 2019-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020-2024 Cambridge Quantum Computing
1+
# Copyright 2020-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

tests/mock_pytket_backend.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 Cambridge Quantum Computing
1+
# Copyright 2019-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

tests/qiskit_backend_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020-2024 Cambridge Quantum Computing
1+
# Copyright 2020-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

tests/qiskit_convert_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 Cambridge Quantum Computing
1+
# Copyright 2019-2024 Quantinuum
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)