Skip to content

Commit 60e05ed

Browse files
committed
Update dependencies in pyproject.toml
minor changes in noxfile - Bump multiprocess to version 0.70.18 - Upgrade orjson to version 3.10.18 - Update rustimport to version 1.7.1 - Change watchdog to version 6.0.0 - Upgrade jinja2 to version 3.1.6 in optional dependencies - Update dev dependencies: - Bump black to version 25.1.0 - Upgrade commitizen to version 4.8.3 - Update isort to version 6.0.1 - Upgrade pre-commit to version 4.2.0 - Update ruff to version 0.11.13 - Update test dependencies: - Upgrade nox to version 2025.5.1 - Update pytest to version 8.4.0 - Upgrade pytest-codspeed to version 3.0.0 - Update requests to version 2.32.4 - Upgrade websocket-client to version 1.8.0
1 parent 0a7781d commit 60e05ed

File tree

3 files changed

+479
-293
lines changed

3 files changed

+479
-293
lines changed

noxfile.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55

66
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"])
77
def tests(session):
8-
session.run("pip", "install", "poetry==1.3.0")
9-
session.run("pip", "install", "maturin")
8+
session.run("pip", "install", "poetry==2.1.3", "poetry-plugin-export")
109
session.run(
1110
"poetry",
1211
"export",
@@ -19,6 +18,7 @@ def tests(session):
1918
"requirements.txt",
2019
)
2120
session.run("pip", "install", "-r", "requirements.txt")
21+
session.run("pip", "install", "maturin")
2222
session.run("pip", "install", "-e", ".")
2323

2424
args = [
@@ -29,7 +29,6 @@ def tests(session):
2929
"--out",
3030
"dist",
3131
]
32-
3332
if sys.platform == "darwin":
3433
session.run("rustup", "target", "add", "x86_64-apple-darwin")
3534
session.run("rustup", "target", "add", "aarch64-apple-darwin")

0 commit comments

Comments
 (0)