Skip to content

Commit

Permalink
pin qiskit-aqt-provider to version 1.5.0 (#107)
Browse files Browse the repository at this point in the history
* pin qiskit-aqt-provider 1.5.0

* fix type errors
  • Loading branch information
trvto authored Jul 30, 2024
1 parent aba36b6 commit a2abf4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ types-requests = "*"
pydantic = "^2.0"
networkx = "^3.0"
sympy = ">=1.6"
qiskit-aqt-provider = "^1.3.0"
qiskit-aqt-provider = "1.5.0"

[tool.poetry.group.tests]
optional = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
from dataclasses import dataclass
from dataclasses import field
from enum import Enum
from typing import Any, Optional, Iterator
from typing import Any, Optional, Iterator, TypeAlias

from sympy import symbols, Expr
from sympy import symbols, Expr # type: ignore

from pytket.circuit import UnitID
from pytket.circuit import Circuit
Expand All @@ -35,7 +35,7 @@
from ..macro_architecture_graph import MultiZoneMacroArch
from ..macro_architecture_graph import ZoneId

ParamType = Expr | float
ParamType: TypeAlias = Expr | float


class QubitPlacementError(Exception):
Expand Down

0 comments on commit a2abf4c

Please sign in to comment.