Skip to content

Commit c36fd17

Browse files
committed
Bumped antlr to 4.13.2
1 parent 5df8402 commit c36fd17

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

.github/workflows/test-release-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
install_antlrjar
2727
- name: Test with coverage/unittest
2828
run: |
29-
export ANTLR4_JAR="$GITHUB_WORKSPACE/jars/antlr-4.13.1-complete.jar" && hatch run tests:run
29+
export ANTLR4_JAR="$GITHUB_WORKSPACE/jars/antlr-4.13.2-complete.jar" && hatch run tests:run
3030
- name: Publish to Coveralls
3131
uses: coverallsapp/github-action@master
3232
with:

.gitpod.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ RUN wget -O - https://apt.llvm.org/llvm.sh > /tmp/llvm.sh && chmod u+x /tmp/llvm
1010

1111
RUN pip install antlr4-python3-runtime graphviz liblet
1212

13-
ENV ANTLR4_JAR=/workspace/liblet/jars/antlr-4.13.1-complete.jar
13+
ENV ANTLR4_JAR=/workspace/liblet/jars/antlr-4.13.2-complete.jar

CHANGELOG.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
v1.7.7 (2025-02-28)
5+
-------------------
6+
7+
- Updated ANTLR to 4.13.2.
8+
49
v1.7.6 (2024-05-28)
510
-------------------
611

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ classifiers = [
3232
"Topic :: Software Development :: Compilers"
3333
]
3434
dependencies = [
35-
"antlr4-python3-runtime==4.13.1",
35+
"antlr4-python3-runtime==4.13.2",
3636
"graphviz",
3737
"ipywidgets",
3838
"jupyter",

src/scripts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
def install_antlrjar():
2-
FILE = 'antlr-4.13.1-complete.jar'
2+
FILE = 'antlr-4.13.2-complete.jar'
33
URL = 'https://www.antlr.org/download/' + FILE
44

55
from pathlib import Path

0 commit comments

Comments
 (0)