Skip to content

Commit 9e4a04f

Browse files
chore(deps): bump nox from 2024.10.9 to 2025.2.9 (#12422)
* chore(deps): bump nox from 2024.10.9 to 2025.2.9 Bumps [nox](https://github.com/wntrblm/nox) from 2024.10.9 to 2025.2.9. - [Release notes](https://github.com/wntrblm/nox/releases) - [Changelog](https://github.com/wntrblm/nox/blob/main/CHANGELOG.md) - [Commits](wntrblm/nox@2024.10.09...2025.02.09) --- updated-dependencies: - dependency-name: nox dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Update noxfile.py --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alex Gaynor <[email protected]>
1 parent 4751132 commit 9e4a04f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

ci-constraints-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ nh3==0.2.20 ; python_full_version >= '3.8'
123123
# via readme-renderer
124124
nox==2024.4.15 ; python_full_version < '3.8'
125125
# via cryptography (pyproject.toml)
126-
nox==2024.10.9 ; python_full_version >= '3.8'
126+
nox==2025.2.9 ; python_full_version >= '3.8'
127127
# via cryptography (pyproject.toml)
128128
packaging==24.0 ; python_full_version < '3.8'
129129
# via

noxfile.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import glob
88
import itertools
99
import json
10+
import os
1011
import pathlib
1112
import re
1213
import sys
@@ -59,7 +60,7 @@ def tests(session: nox.Session) -> None:
5960
pathlib.Path(".") / ".rust-cov" / str(uuid.uuid4())
6061
).absolute()
6162
if session.name != "tests-nocoverage":
62-
rustflags = session.env.get("RUSTFLAGS", "")
63+
rustflags = os.environ.get("RUSTFLAGS", "")
6364
assert rustflags is not None
6465
session.env.update(
6566
{
@@ -219,7 +220,7 @@ def rust(session: nox.Session) -> None:
219220
prof_location = (
220221
pathlib.Path(".") / ".rust-cov" / str(uuid.uuid4())
221222
).absolute()
222-
rustflags = session.env.get("RUSTFLAGS", "")
223+
rustflags = os.environ.get("RUSTFLAGS", "")
223224
assert rustflags is not None
224225
session.env.update(
225226
{

0 commit comments

Comments
 (0)