Skip to content

Commit 8a73ddc

Browse files
committed
Upgrade to Antlr 4.13.1
1 parent 7d72e69 commit 8a73ddc

34 files changed

+379
-229
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
**/*.rpt
1010
**/htmlcov
1111
**/*.so
12+
**/.idea
1213

1314
build/
1415
dist/

docs/dev_notes/antlr.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ From: https://github.com/antlr/antlr4/blob/master/doc/getting-started.md
1010
Download antlr4::
1111

1212
cd /usr/local/lib
13-
sudo curl -O https://www.antlr.org/download/antlr-4.11.1-complete.jar
13+
sudo curl -O https://www.antlr.org/download/antlr-4.13.1-complete.jar
1414

1515

1616
Antlr API reference: http://www.antlr.org/api/Java/index.html
@@ -22,7 +22,7 @@ Upgrading the Antlr version
2222
* Download latest jar file (See above)
2323
* Install latest python packages::
2424

25-
python3 -m pip install --user -U antlr4-python3-runtime speedy-antlr-tool mypy
25+
python3 -m pip install -U antlr4-python3-runtime speedy-antlr-tool mypy
2626

2727
* Download C++ runtime source distribution from https://www.antlr.org/download.html
2828

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def run_setup(with_binary):
6767
cmdclass={"build_ext": ve_build_ext},
6868
python_requires='>=3.5.2',
6969
install_requires=[
70-
"antlr4-python3-runtime >= 4.11, < 4.12",
70+
"antlr4-python3-runtime >= 4.11, < 4.14",
7171
"colorama",
7272
"markdown",
7373
],
@@ -82,6 +82,7 @@ def run_setup(with_binary):
8282
"Programming Language :: Python :: 3.9",
8383
"Programming Language :: Python :: 3.10",
8484
"Programming Language :: Python :: 3.11",
85+
"Programming Language :: Python :: 3.12",
8586
"Programming Language :: Python :: 3 :: Only",
8687
"Intended Audience :: Developers",
8788
"License :: OSI Approved :: MIT License",

systemrdl/parser/SystemRDLLexer.py

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

systemrdl/parser/SystemRDLParser.py

+20-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

systemrdl/parser/SystemRDLVisitor.py

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

systemrdl/parser/ext/SystemRDLBaseVisitor.cpp

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

systemrdl/parser/ext/SystemRDLBaseVisitor.h

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

systemrdl/parser/ext/SystemRDLLexer.cpp

+14-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

systemrdl/parser/ext/SystemRDLLexer.h

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)