Skip to content

Commit

Permalink
Stop testing against Python 3.7
Browse files Browse the repository at this point in the history
This is not supported by even pre-commit anymore
  • Loading branch information
jonathansick committed Feb 21, 2024
1 parent 1f26188 commit 94d33d3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ jobs:
strategy:
matrix:
python:
- 3.7
- 3.8
- 3.9
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -45,7 +47,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: "3.9"

- name: Install tox and
run: |
Expand Down Expand Up @@ -78,7 +80,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: "3.9"

- name: Install dependencies
run: |
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/cron-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ jobs:
strategy:
matrix:
python:
- 3.7
- 3.8
- 3.9
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -50,7 +52,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: "3.9"

- name: Install tox and LTD Conveyor
run: |
Expand Down

0 comments on commit 94d33d3

Please sign in to comment.