Skip to content

Commit 037d2e9

Browse files
authored
Fixed the missing dependencies (#3)
1 parent 9c6f762 commit 037d2e9

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

source/openpulse/openpulse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
the :obj:`~parser.parse` function.
1515
"""
1616

17-
__version__ = "0.2.0"
17+
__version__ = "0.2.1"
1818

1919
from . import ast
2020

source/openpulse/openpulse/antlr/__init__.py

Whitespace-only changes.

source/openpulse/setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ python_requires = '>=3.7'
2424
[options]
2525
packages = find:
2626
include_package_data = True
27+
install_requires =
28+
antlr4-python3-runtime==4.9.2
29+
opennqasm3==0.2.0
2730

2831
[options.packages.find]
2932
exclude = tests*
3033

3134
[options.extras_require]
32-
parser =
33-
antlr4-python3-runtime==4.9.2
3435
tests =
3536
pytest>=6.0
3637
pyyaml
3738
all =
38-
%(parser)s
3939
%(tests)s

0 commit comments

Comments
 (0)