Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare to publish Spanish and Japanese runtime docs (backport #421) #424

Closed
wants to merge 5 commits into from
Closed
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
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '0.6.0'
release = '0.6.1'

# -- General configuration ---------------------------------------------------

Expand Down
1 change: 1 addition & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.. release-notes:: Release Notes
:version: 0.6.1, 0.6.0, 0.5.0, 0.4.0, 0.3.0, 0.2.0, 0.1.0, 0.1.0rc2, 0.1.0rc1
2 changes: 2 additions & 0 deletions docs/versionutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@

translations_list = [
('en', 'English'),
('ja_JP', 'Japanese'),
('es_US', 'Spanish'),
]

default_language = 'en'
Expand Down
2 changes: 1 addition & 1 deletion qiskit_ibm_runtime/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.0
0.6.1
2 changes: 1 addition & 1 deletion qiskit_ibm_runtime/qpy/binary_io/circuits.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
from qiskit.quantum_info.operators import SparsePauliOp
from qiskit.synthesis import evolution as evo_synth
from .. import common, formats, exceptions, type_keys
from ..binary_io import value, schedules
from . import value, schedules


def _read_header_v2( # type: ignore[no-untyped-def]
Expand Down
2 changes: 1 addition & 1 deletion qiskit_ibm_runtime/qpy/binary_io/schedules.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from qiskit.utils import optionals as _optional

from .. import formats, common, type_keys
from ..binary_io import value
from . import value


def _read_channel(file_obj, version): # type: ignore[no-untyped-def]
Expand Down
2 changes: 1 addition & 1 deletion qiskit_ibm_runtime/qpy/type_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
AlignSequential,
AlignEquispaced,
)
from .. import exceptions
from . import exceptions


class TypeKeyBase(bytes, Enum):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
fixes:
- |
Fixes the issue where ``QpyError`` was getting imported from an incorrect exceptions file.