From ba4a9935910ecf51a4917dc7c30bde3ad4608887 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Apr 2023 13:57:36 +0000 Subject: [PATCH 1/2] build(deps): bump wntrblm/nox from 2022.11.21 to 2023.04.22 Bumps [wntrblm/nox](https://github.com/wntrblm/nox) from 2022.11.21 to 2023.04.22. - [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/2022.11.21...2023.04.22) --- updated-dependencies: - dependency-name: wntrblm/nox dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/update-dependencies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 2d0beee5..41395a0d 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -22,7 +22,7 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: wntrblm/nox@2022.11.21 + - uses: wntrblm/nox@2023.04.22 with: python-versions: "3.6, 3.7, 3.8, 3.9, 3.10, 3.11" From 7efc7dbb91cf58636ffddbfc8a2d4eb18bfc553f Mon Sep 17 00:00:00 2001 From: mayeut Date: Sat, 29 Apr 2023 11:33:34 +0200 Subject: [PATCH 2/2] chore: stop updating python 3.6 constraints All dependencies (except distlib) dropped python 3.6, just stop trying updating. --- .github/workflows/update-dependencies.yml | 2 +- noxfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 41395a0d..db551026 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -24,7 +24,7 @@ jobs: - uses: wntrblm/nox@2023.04.22 with: - python-versions: "3.6, 3.7, 3.8, 3.9, 3.10, 3.11" + python-versions: "3.7, 3.8, 3.9, 3.10, 3.11" - name: "Run update: dependencies" run: nox --force-color -s update_constraints diff --git a/noxfile.py b/noxfile.py index 142ea3fe..40c67311 100644 --- a/noxfile.py +++ b/noxfile.py @@ -9,7 +9,7 @@ import nox nox.options.sessions = ["lint", "pylint", "check_manifest", "tests"] -PYTHON_ALL_VERSIONS = ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] +PYTHON_ALL_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11"] DIR = Path(__file__).parent.resolve()