Skip to content

Commit ca57dbf

Browse files
committed
Merge branch 'main' into feature/update-to-openqasm-3-1
2 parents 8f05365 + 615abd8 commit ca57dbf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

source/openpulse/openpulse/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
) from exc
3636

3737
import openpulse.ast as openpulse_ast
38-
from openqasm3._antlr.qasm3Parser import qasm3Parser
38+
from openqasm3._antlr.qasm3Parser import qasm3Parser # pylint: disable=import-error
3939
from openqasm3 import ast
4040
from openqasm3.parser import (
4141
span,

source/openpulse/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
antlr4-python3-runtime
2-
openqasm3>=1.0.0
2+
openqasm3>=1.0.0,<2.0

source/openpulse/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ include_package_data = True
2727
install_requires =
2828
antlr4-python3-runtime # __ANTLR_VERSIONS__
2929
importlib_metadata; python_version<'3.10'
30-
openqasm3[parser]>=1.0.0
30+
openqasm3[parser]>=1.0.0,<2.0
3131

3232
[options.packages.find]
3333
exclude = tests*

0 commit comments

Comments
 (0)