We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40712b6 commit 102312dCopy full SHA for 102312d
source/openpulse/.gitignore
@@ -1,5 +1,6 @@
1
antlr/
2
build/
3
dist/
4
+_antlr/
5
6
docs/_build
source/openpulse/openpulse/__init__.py
@@ -14,7 +14,7 @@
14
the :obj:`~parser.parse` function.
15
"""
16
17
-__version__ = "0.4.0"
+__version__ = "0.4.1"
18
19
from . import ast
20
from . import parser
source/openpulse/openpulse/ast.py
@@ -90,7 +90,7 @@ class CalibrationDefinition(Statement):
90
91
92
name: Identifier
93
- arguments: List[ClassicalArgument]
+ arguments: List[Union[ClassicalArgument, Expression]]
94
qubits: List[Identifier]
95
return_type: Optional[ClassicalType]
96
body: List[Statement]
0 commit comments