Skip to content

Commit ff64e61

Browse files
committed
Build wheels for Python 3.14
1 parent 2b231a3 commit ff64e61

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Supported versions of Python:
5555

5656
Python requirements (these are specified in ``setup.py``):
5757

58-
- cffi 1.17.0 or later
58+
- cffi 2.0 or later
5959

6060
Libgit2 **v1.9.x**; binary wheels already include libgit2, so you only need to
6161
worry about this if you install the source package.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]
33

44
[tool.cibuildwheel]
55
enable = ["pypy"]
6-
skip = "*musllinux_ppc64le cp314*"
6+
skip = "*musllinux_ppc64le"
77

88
archs = ["native"]
99
build-frontend = "default"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
cffi>=1.16.0
1+
cffi>=2.0
22
setuptools ; python_version >= "3.12"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ def run(self) -> None:
154154
ext_modules=ext_modules,
155155
# Requirements
156156
python_requires='>=3.10',
157-
setup_requires=['cffi>=1.17.0'],
158-
install_requires=['cffi>=1.17.0'],
157+
setup_requires=['cffi>=2.0'],
158+
install_requires=['cffi>=2.0'],
159159
# URLs
160160
url='https://github.com/libgit2/pygit2',
161161
project_urls={

0 commit comments

Comments
 (0)