Skip to content

Commit d71b071

Browse files
authored
Merge pull request #43 from ssciwr/py313
add python 3.13
2 parents 63e5b3a + ebb7b32 commit d71b071

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
fail-fast: false
3030
matrix:
3131
os: [ubuntu-latest, macos-latest, windows-latest]
32-
python-version: ["3.10", "3.11", "3.12"]
32+
python-version: ["3.11", "3.12", "3.13"]
3333
steps:
3434
- uses: actions/checkout@v4
3535

.github/workflows/pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414

1515
- name: Build wheels
16-
uses: pypa/cibuildwheel@v2.18
16+
uses: pypa/cibuildwheel@v2.20
1717

1818
- uses: actions/upload-artifact@v4
1919
with:

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repos:
88
- id: mixed-line-ending
99

1010
- repo: https://github.com/psf/black
11-
rev: 24.4.2
11+
rev: 24.8.0
1212
hooks:
1313
- id: black
1414

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
cmake_minimum_required(VERSION 3.15..3.29)
1+
cmake_minimum_required(VERSION 3.16...3.30)
22

33
# Set a name and a version number for your project:
44
project(
55
pybind11-numpy-example
6-
VERSION 1.0.0
6+
VERSION 1.0.1
77
LANGUAGES CXX)
88

99
# Initialize some default paths

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "pybind11-numpy-example"
7-
version = "1.0.0"
7+
version = "1.0.1"
88
description = "An example of using numpy with pybind11"
99
readme = "README.md"
1010
license = {text = "MIT"}
1111
authors=[{name="Liam Keegan", email="[email protected]"}]
1212
maintainers=[{name="Liam Keegan", email="[email protected]"}]
13-
requires-python = ">=3.7"
13+
requires-python = ">=3.8"
1414
dependencies = ["numpy"]
1515
keywords = ["pybind11", "cibuildwheel", "c++", "pypi", "numpy", "simple", "example", "wheel", "pypi", "conda-forge"]
1616
classifiers=[
1717
"Programming Language :: C++",
1818
"Programming Language :: Python :: 3 :: Only",
19-
"Programming Language :: Python :: 3.7",
2019
"Programming Language :: Python :: 3.8",
2120
"Programming Language :: Python :: 3.9",
2221
"Programming Language :: Python :: 3.10",
2322
"Programming Language :: Python :: 3.11",
2423
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
2525
"Programming Language :: Python :: Implementation :: CPython",
2626
"Programming Language :: Python :: Implementation :: PyPy",
2727
"Operating System :: MacOS :: MacOS X",

0 commit comments

Comments
 (0)