Skip to content

Commit f123121

Browse files
committed
fix: revert workaround using pybind11 3.0.1 release
Signed-off-by: Henry Schreiner <[email protected]>
1 parent ecfd412 commit f123121

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
fail-fast: false
4848
matrix:
4949
os: [ubuntu-latest, windows-latest, macos-13, macos-latest, ubuntu-24.04-arm, windows-11-arm]
50-
py: [cp39, cp310, cp311, cp312, cp313, cp313t, cp314]
50+
py: [cp39, cp310, cp311, cp312, cp313, cp313t, cp314, cp314t]
5151
exclude:
5252
- os: ubuntu-24.04-arm
5353
py: cp39

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def pypy(session: nox.Session) -> None:
7070
@nox.session(venv_backend="uv", reuse_venv=True)
7171
def cov(session: nox.Session) -> None:
7272
"""Run covage and place in 'htmlcov' directory."""
73-
session.install("--only-binary=numpy", "-e.[test,doc]")
73+
session.install("--only-binary=:all:", "-e.[test,doc]")
7474
session.run("coverage", "run", "-m", "pytest", env=ENV)
7575
session.run("coverage", "html", "-d", "build/htmlcov")
7676
session.run("coverage", "report", "-m")
@@ -80,7 +80,7 @@ def cov(session: nox.Session) -> None:
8080
@nox.session(python="3.11", reuse_venv=True)
8181
def doc(session: nox.Session) -> None:
8282
"""Build html documentation."""
83-
session.install("--only-binary=numpy", "-e.[test,doc]")
83+
session.install("--only-binary=:all:", "-e.[test,doc]")
8484

8585
# link check
8686
session.run(

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["scikit-build-core>=0.11", "pybind11 @ git+https://github.com/henryiii/pybind11@henryiii/fix/limitwarning"]
2+
requires = ["scikit-build-core>=0.11", "pybind11>=3.0"]
33
build-backend = "scikit_build_core.build"
44

55
[project]

0 commit comments

Comments
 (0)