Skip to content

Commit

Permalink
chore: update py version in workflows (3.6 deprec)
Browse files Browse the repository at this point in the history
  • Loading branch information
y-prudent committed Nov 28, 2023
1 parent d78d557 commit 7ee8f09
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ignore_missing_imports = True
ignore_missing_imports = True

[tox:tox]
envlist = py{36,37,38},py{36,37,38}-lint
envlist = py{37,38,39},py{37,38,39}-lint

[testenv]
pip_version = pip>=20
Expand All @@ -31,7 +31,7 @@ install_command = pip install --find-links https://download.pytorch.org/whl/torc
commands =
pytest tests

[testenv:py{36,37,38}-lint]
[testenv:py{37,38,39}-lint]
skip_install = true
deps =
black
Expand Down

0 comments on commit 7ee8f09

Please sign in to comment.