I'm using this for a project based on python3.13 (using 3.13.0b1) and there's no package in PyPI:
$ env/bin/pip install tree-sitter-languages
ERROR: Could not find a version that satisfies the requirement tree-sitter-languages (from versions: none)
ERROR: No matching distribution found for tree-sitter-languages
I am installing this manually (download the repo, install cython+setuptools+tree_sitter, run ./build.py, and then setup.py install), and it works fine. But it would be nice if the wheel was available in PyPI (and it would allow me to properly package my project). Thanks!
I'm using this for a project based on python3.13 (using 3.13.0b1) and there's no package in PyPI:
I am installing this manually (download the repo, install cython+setuptools+tree_sitter, run
./build.py
, and thensetup.py install
), and it works fine. But it would be nice if the wheel was available in PyPI (and it would allow me to properly package my project). Thanks!