From 43c9e0b248cfef0ca4b745b4693c945a1b34390e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Feb 2025 07:23:21 +0000 Subject: [PATCH 1/2] chore(deps): bump wntrblm/nox in the actions group Bumps the actions group with 1 update: [wntrblm/nox](https://github.com/wntrblm/nox). Updates `wntrblm/nox` from 2024.10.09 to 2025.02.09 - [Release notes](https://github.com/wntrblm/nox/releases) - [Changelog](https://github.com/wntrblm/nox/blob/main/CHANGELOG.md) - [Commits](https://github.com/wntrblm/nox/compare/2024.10.09...2025.02.09) --- updated-dependencies: - dependency-name: wntrblm/nox dependency-type: direct:production dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9e01c83e..0ff32a2bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -340,7 +340,7 @@ jobs: - uses: astral-sh/setup-uv@v5 - - uses: wntrblm/nox@2024.10.09 + - uses: wntrblm/nox@2025.02.09 with: python-versions: "3.12" From a4fab4655ec425d725f4ffb1e23c72fef920de52 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Wed, 12 Feb 2025 16:04:17 -0500 Subject: [PATCH 2/2] tests: remove old workaround for 3.13 betas Signed-off-by: Henry Schreiner --- tests/conftest.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index ac394ca81..42ec3783a 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -89,8 +89,6 @@ def __init__(self, env_dir: Path, *, wheelhouse: Path | None = None) -> None: self.purelib = Path( self.execute("import sysconfig; print(sysconfig.get_path('purelib'))") ) - if sys.version_info >= (3, 13): - self.run("pip", "install", "-U", "pip>=24.1") @overload def run(self, *args: str, capture: Literal[True]) -> str: ...