Skip to content

Commit b98a27b

Browse files
committed
Upgrade dependencies
1 parent 09676d4 commit b98a27b

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repos:
1919
- "pyproject-metadata~=0.9.1"
2020
- "tomli>=1.2.3,<3; python_version < '3.11'"
2121
- "lark>=1.1.9,<2"
22-
- "click~=8.1.3"
22+
- "click>=8.1.3,<9"
2323
- repo: https://github.com/pre-commit/mirrors-clang-format
2424
rev: "v20.1.5"
2525
hooks:

examples/nanobind-project/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ dynamic = ["version", "description"]
2727
add = "nanobind_project.add:main"
2828

2929
[project.optional-dependencies]
30-
test = ["pytest>=7.2.0,<7.5"]
30+
test = ["pytest>=7.2.0,<9"]
3131

3232
[build-system]
3333
requires = [
3434
"py-build-cmake~=0.4.4.dev0",
35-
"nanobind~=2.6.1",
36-
"typing_extensions~=4.12.2; python_version < '3.11'",
35+
"nanobind~=2.7.0",
36+
"typing_extensions>=4.12.2,<5; python_version < '3.11'",
3737
]
3838
build-backend = "py_build_cmake.build"
3939

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ def editable(session: nox.Session, mode):
305305
"pytest",
306306
"pybind11~=2.13.6",
307307
"pybind11-stubgen~=2.5.1",
308-
"nanobind~=2.6.1",
308+
"nanobind~=2.7.0",
309309
"swig~=4.3.0",
310310
"cmake",
311311
"ninja",

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies = [
3939
"pyproject-metadata~=0.9.1",
4040
"tomli>=1.2.3,<3; python_version < '3.11'",
4141
"lark>=1.1.9,<2",
42-
"click~=8.1.3",
42+
"click>=8.1.3,<9",
4343
]
4444
dynamic = ["version", "description"]
4545

@@ -52,12 +52,12 @@ Tracker = "https://github.com/tttapa/py-build-cmake/issues"
5252
py-build-cmake = "py_build_cmake.cli:cli"
5353

5454
[project.optional-dependencies]
55-
test = ["nox>=2023.4.22,<2024", "jinja2~=3.1.2"]
55+
test = ["nox>=2023.4.22,<2026", "jinja2~=3.1.2"]
5656
docs = [
57-
"sphinx==7.4.7",
58-
"sphinx-book-theme==1.1.3",
57+
"sphinx==8.2.3",
58+
"sphinx-book-theme==1.1.4",
5959
"sphinx_design==0.6.1",
60-
"myst-parser==3.0.1",
60+
"myst-parser==4.0.1",
6161
]
6262

6363
[tool.py-build-cmake.module]
@@ -68,7 +68,7 @@ minversion = "6.0"
6868
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
6969
xfail_strict = true
7070
filterwarnings = ["error"]
71-
log_cli_level = "info"
71+
log_cli_level = "INFO"
7272
testpaths = ["tests"]
7373
norecursedirs = ["tests/packages"]
7474

0 commit comments

Comments
 (0)