Skip to content

Commit 8fdbc8a

Browse files
authored
chore: update versions and remove wheel (#22)
* chore: update versions and remove wheel Signed-off-by: Henry Schreiner <[email protected]> * Apply suggestions from code review
1 parent 4d1a83a commit 8fdbc8a

File tree

9 files changed

+4
-12
lines changed

9 files changed

+4
-12
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
name: Check on ${{ matrix.runs-on }}
2222

2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525
- uses: excitedleigh/setup-nox@main
2626
- run: nox

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def dist(session: nox.Session, module: str) -> None:
1616
session.install("build")
1717

1818
# Builds SDist and wheel
19-
session.run("pyproject-build")
19+
session.run("python", "-m", "build")
2020

2121

2222
@nox.session

projects/hello-cmake-package/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[build-system]
22
requires = [
33
"setuptools>=42",
4-
"wheel",
54
"scikit-build",
65
"cmake>=3.14",
76
"ninja",

projects/hello-cpp/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[build-system]
22
requires = [
33
"setuptools>=42",
4-
"wheel",
54
"scikit-build>=0.13",
65
"cmake>=3.18",
76
"ninja",

projects/hello-cython/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[build-system]
22
requires = [
33
"setuptools>=42",
4-
"wheel",
54
"scikit-build>=0.13",
65
"cmake>=3.18",
76
"ninja",

projects/hello-pure/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[build-system]
22
requires = [
33
"setuptools>=42",
4-
"wheel",
54
"scikit-build>=0.13",
65
"cmake>=3.18",
76
"ninja",

projects/hello-pybind11/CMakeLists.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,12 @@ project(hello-pybind11 VERSION "0.1")
44

55
# Define CMAKE_INSTALL_xxx: LIBDIR, INCLUDEDIR
66
include(GNUInstallDirs)
7-
8-
# Fetch pybind11
97
include(FetchContent)
108

119
FetchContent_Declare(
1210
pybind11
13-
URL https://github.com/pybind/pybind11/archive/refs/tags/v2.9.1.tar.gz
14-
URL_HASH SHA256=c6160321dc98e6e1184cc791fbeadd2907bb4a0ce0e447f2ea4ff8ab56550913
11+
URL https://github.com/pybind/pybind11/archive/refs/tags/v2.9.2.tar.gz
12+
URL_HASH SHA256=6bd528c4dbe2276635dc787b6b1f2e5316cf6b49ee3e150264e455a0d68d19c1
1513
)
1614
FetchContent_MakeAvailable(pybind11)
1715

projects/hello-pybind11/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[build-system]
22
requires = [
33
"setuptools",
4-
"wheel",
54
"scikit-build>=0.13",
65
"cmake",
76
"ninja",

projects/pen2-cython/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[build-system]
22
requires = [
33
"setuptools>=42",
4-
"wheel",
54
"scikit-build>=0.13",
65
"cmake>=3.18",
76
"ninja",

0 commit comments

Comments
 (0)