File tree 4 files changed +10
-10
lines changed
4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 13
13
- uses : actions/checkout@v3
14
14
15
15
- name : Build wheels
16
- uses : pypa/cibuildwheel@v2.12.1
16
+ uses : pypa/cibuildwheel@v2.15
17
17
18
18
- uses : actions/upload-artifact@v3
19
19
with :
22
22
upload_pypi :
23
23
needs : [build-wheels]
24
24
runs-on : ubuntu-latest
25
+ environment : release
25
26
if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
26
27
steps :
27
28
- uses : actions/download-artifact@v3
31
32
32
33
- uses : pypa/gh-action-pypi-publish@release/v1
33
34
with :
34
- user : __token__
35
- password : ${{ secrets.PYPI_API_TOKEN }}
36
35
verbose : true
Original file line number Diff line number Diff line change 8
8
- id : mixed-line-ending
9
9
10
10
- repo : https://github.com/psf/black
11
- rev : 23.3 .0
11
+ rev : 23.7 .0
12
12
hooks :
13
13
- id : black
14
14
15
15
- repo : https://github.com/cheshirekow/cmake-format-precommit
16
16
rev : v0.6.13
17
17
hooks :
18
18
- id : cmake-format
19
- additional_dependencies : [pyyaml==5.4.1 ]
19
+ additional_dependencies : [pyyaml]
20
20
21
21
- repo : https://github.com/kynan/nbstripout
22
22
rev : 0.6.1
29
29
- id : clang-format
30
30
31
31
- repo : https://github.com/pre-commit/mirrors-prettier
32
- rev : v3.0.0-alpha.9-for-vscode
32
+ rev : v3.0.1
33
33
hooks :
34
34
- id : prettier
35
35
ci :
Original file line number Diff line number Diff line change 1
- cmake_minimum_required (VERSION 3.15..3.25 )
1
+ cmake_minimum_required (VERSION 3.15..3.26 )
2
2
3
3
# Set a name and a version number for your project:
4
4
project (
5
5
pybind11-numpy-example
6
- VERSION 0.0.5
6
+ VERSION 0.0.6
7
7
LANGUAGES CXX)
8
8
9
9
# Initialize some default paths
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
4
4
5
5
[project ]
6
6
name = " pybind11-numpy-example"
7
- version = " 0.0.5 "
7
+ version = " 0.0.6 "
8
8
description = " An example of using numpy with pybind11"
9
9
readme = " README.md"
10
10
license = {text = " MIT" }
@@ -18,6 +18,7 @@ classifiers=[
18
18
" Programming Language :: Python :: 3.9" ,
19
19
" Programming Language :: Python :: 3.10" ,
20
20
" Programming Language :: Python :: 3.11" ,
21
+ " Programming Language :: Python :: 3.12" ,
21
22
" Programming Language :: Python :: Implementation :: CPython" ,
22
23
" Programming Language :: Python :: Implementation :: PyPy" ,
23
24
" Operating System :: MacOS :: MacOS X" ,
@@ -41,4 +42,4 @@ BUILD_DOCS = "OFF"
41
42
[tool .cibuildwheel ]
42
43
test-extras = " test"
43
44
test-command = " python -m pytest {project}/python/tests -v"
44
- test-skip = " pp* *-musllinux* *-manylinux_i686"
45
+ test-skip = " pp* *-musllinux* *-manylinux_i686 cp312-* "
You can’t perform that action at this time.
0 commit comments