Skip to content

Commit

Permalink
chore: stop updating python 3.6 constraints
Browse files Browse the repository at this point in the history
All dependencies (except distlib) dropped python 3.6, just stop trying updating.
  • Loading branch information
mayeut committed Apr 29, 2023
1 parent ba4a993 commit 7efc7db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

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()

Expand Down

0 comments on commit 7efc7db

Please sign in to comment.