Skip to content

Commit

Permalink
Merge pull request #6 from segevfiner/python3.13
Browse files Browse the repository at this point in the history
Add Python 3.13 wheels
  • Loading branch information
segevfiner authored Nov 2, 2024
2 parents e5efc0a + d6c41f6 commit 55713a3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- main
tags:
- v[0-9].*
workflow_dispatch:

jobs:
build_wheels:
Expand All @@ -22,16 +23,16 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'

- name: Build sdist
if: matrix.os == 'windows-2019'
run: |
pip install scikit-build cython
python setup.py sdist
pip install build
python -m build --sdist
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5
uses: pypa/cibuildwheel@v2.21.3
env:
CIBW_SKIP: 'pp*'
CIBW_BEFORE_BUILD: |
Expand Down
2 changes: 1 addition & 1 deletion cyminhook/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from ._cyminhook import *


__version__ = "0.1.4"
__version__ = "0.1.5"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools", "wheel", "scikit-build>=0.13.1", "cmake", "ninja; sys_platform != 'win32'", "cython"]
requires = ["setuptools>=59", "scikit-build>=0.13.1", "cmake", "ninja; sys_platform != 'win32'", "cython"]
build-backend = "setuptools.build_meta"
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
keywords="MinHook",
zip_safe=False,
Expand Down

0 comments on commit 55713a3

Please sign in to comment.