Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/topic/bbannier/issue-73'
Browse files Browse the repository at this point in the history
  • Loading branch information
bbannier committed May 21, 2024
2 parents f3fd339 + 54a2e3e commit 5c60ba6
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
15 changes: 15 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
1.2.8-3 | 2024-05-21 10:46:09 +0200

* Drop support for EOL python-3.7 (Benjamin Bannier, Corelight)

This version has reached EOL, and tree-sitter stopped publishing updates
for this version some time ago.

* GH-73: Pin tree-sitter dependency (Benjamin Bannier, Corelight)

We use `tree-sitter.Language.build_library` which after a deprecation
cycle went away with tree-sitter-0.22.0. Pin it, at least until we have
migrated off that API.

Closes #73.

1.2.8 | 2023-12-01 11:28:07 +0100

* Skip building pypy wheels on Linux as well (Benjamin Bannier, Corelight)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.8
1.2.8-3
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ def get_readme():
"install": InstallPlatlib,
},
distclass=BinaryDistribution,
setup_requires=["tree_sitter"],
install_requires=["tree_sitter"],
python_requires=">3.7.0",
setup_requires=["tree_sitter==0.21.3"],
install_requires=["tree_sitter==0.21.3"],
python_requires=">3.8.0",
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: BSD License",
Expand Down
2 changes: 1 addition & 1 deletion zeekscript/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Wrapper around more low-level tests."""
__version__ = "1.2.8"
__version__ = "1.2.8-3"
__all__ = ["cli", "error", "formatter", "node", "output", "parser", "script"]

from .cli import *
Expand Down

0 comments on commit 5c60ba6

Please sign in to comment.