8000 chore: fix tree sitter version <0.22 to build for m1 and python 3.8 by k4black · Pull Request #47 · k4black/codebleu · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

chore: fix tree sitter version <0.22 to build for m1 and python 3.8 #47

New issue

Have a question ab 8000 out 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

Merged
merged 1 commit into from
May 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "tree-sitter>=0.20.0,<1.0.0", "requests>=2.0.0,<3.0.0"]
requires = ["setuptools>=61.0.0", "wheel", "tree-sitter>=0.20.0,<0.22.0", "requests>=2.0.0,<3.0.0"]
build-backend = "setuptools.build_meta"


Expand All @@ -23,7 +23,7 @@ classifiers = [
]

dependencies = [
"tree-sitter >=0.20.0,<1.0.0",
"tree-sitter >=0.20.0,<0.22.0",
"setuptools >=61.0.0", # distutils removed in 3.12, but distutils.ccompiler used in tree-sitter
]

Expand Down
0