Skip to content

Commit 55713a3

Browse files
authored
Merge pull request #6 from segevfiner/python3.13
Add Python 3.13 wheels
2 parents e5efc0a + d6c41f6 commit 55713a3

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- uses: actions/setup-python@v5
2222
with:
23-
python-version: '3.11'
23+
python-version: '3.12'
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip setuptools wheel

.github/workflows/wheels.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- main
77
tags:
88
- v[0-9].*
9+
workflow_dispatch:
910

1011
jobs:
1112
build_wheels:
@@ -22,16 +23,16 @@ jobs:
2223

2324
- uses: actions/setup-python@v5
2425
with:
25-
python-version: '3.11'
26+
python-version: '3.12'
2627

2728
- name: Build sdist
2829
if: matrix.os == 'windows-2019'
2930
run: |
30-
pip install scikit-build cython
31-
python setup.py sdist
31+
pip install build
32+
python -m build --sdist
3233
3334
- name: Build wheels
34-
uses: pypa/cibuildwheel@v2.16.5
35+
uses: pypa/cibuildwheel@v2.21.3
3536
env:
3637
CIBW_SKIP: 'pp*'
3738
CIBW_BEFORE_BUILD: |

cyminhook/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
from ._cyminhook import *
66

77

8-
__version__ = "0.1.4"
8+
__version__ = "0.1.5"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[build-system]
2-
requires = ["setuptools", "wheel", "scikit-build>=0.13.1", "cmake", "ninja; sys_platform != 'win32'", "cython"]
2+
requires = ["setuptools>=59", "scikit-build>=0.13.1", "cmake", "ninja; sys_platform != 'win32'", "cython"]
33
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"Programming Language :: Python :: 3.10",
4141
"Programming Language :: Python :: 3.11",
4242
"Programming Language :: Python :: 3.12",
43+
"Programming Language :: Python :: 3.13",
4344
],
4445
keywords="MinHook",
4546
zip_safe=False,

0 commit comments

Comments
 (0)