-
Notifications
You must be signed in to change notification settings - Fork 484
fix(python-driver): add null-guards in ANTLR parser and relax runtime version pin #2372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
b91e6c0
dec68f2
5e78cb8
281e6f3
4d0fb3b
d675537
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -29,6 +29,7 @@ authors = [ | |
| {name = "Ikchan Kwon, Apache AGE", email = "dev-subscribe@age.apache.org"} | ||
| ] | ||
| classifiers = [ | ||
| "Programming Language :: Python :: 3.9", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3.11", | ||
| "Programming Language :: Python :: 3.12", | ||
|
|
@@ -37,7 +38,9 @@ classifiers = [ | |
| ] | ||
| dependencies = [ | ||
| "psycopg", | ||
| "antlr4-python3-runtime==4.11.1", | ||
| # ANTLR4 runtime is format-compatible within major versions; | ||
| # tested on 4.11.1–4.13.2 with Python 3.9–3.14. | ||
| "antlr4-python3-runtime>=4.11.1,<5.0", | ||
|
Comment on lines
+41
to
+43
|
||
| ] | ||
|
|
||
| [project.urls] | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| psycopg | ||
| antlr4-python3-runtime==4.11.1 | ||
| antlr4-python3-runtime>=4.11.1,<5.0 | ||
| setuptools | ||
| networkx |
Uh oh!
There was an error while loading. Please reload this page.