Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
Remove support for testing with Python 3.6
Browse files Browse the repository at this point in the history
GitHub Actions actions/setup-python no longer supports Python 3.6
  • Loading branch information
gene1wood committed Jul 25, 2023
1 parent f7ddcb9 commit 29510eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,14 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10"]
exclude:
- platform: macos-latest
python-version: "3.6"
- platform: macos-latest
python-version: "3.7"
- platform: macos-latest
python-version: "3.9"
- platform: macos-latest
python-version: "3.10"
- platform: windows-latest
python-version: "3.6"
- platform: windows-latest
python-version: "3.7"
- platform: windows-latest
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
[tox]
envlist = py{36,37,38,39,310}-{linux,macos,windows}, flake8
envlist = py{37,38,39,310}-{linux,macos,windows}, flake8

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
Expand Down

0 comments on commit 29510eb

Please sign in to comment.