Skip to content

Commit a636602

Browse files
committed
More attempted fixes
1 parent bd6f2d0 commit a636602

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
platforms: all
3333

3434
- name: Build wheels
35-
run: uvx --python 3.12 [email protected] --output-dir dist
35+
run: uvx [email protected] --output-dir dist
3636
env:
37-
CIBW_BEFORE_BUILD: pip install Cython==3.0.11 && pip install -e . && python build.py
37+
CIBW_BEFORE_BUILD: pip install --upgrade Cython==3.0.11 && pip install -e . && python build.py
3838
CIBW_TEST_REQUIRES: pytest
3939
CIBW_TEST_COMMAND: pytest --showlocals {package}/tests
4040
CIBW_SKIP: "{pp*}"

pyproject.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[project]
2+
requires-python = ">= 3.8"
3+
4+
[build-system]
5+
requires = [
6+
"setuptools>=42",
7+
"Cython",
8+
]
9+
10+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
packages=["tree_sitter_languages"],
2525
package_data={"tree_sitter_languages": ["languages.so", "languages.dll"]},
2626
install_requires=["tree-sitter<0.22.0"],
27-
python_requires=">=3.8.1",
27+
python_requires=">=3.8",
2828
project_urls={
2929
"Documentation": "https://github.com/Textualize/py-tree-sitter-languages",
3030
"Source": "https://github.com/Textualize/py-tree-sitter-languages",

0 commit comments

Comments
 (0)