Remove testing for Python 3.8, add for 3.12

This commit is contained in:
Jeremy Singer-Vine
2024-07-06 16:18:51 -04:00
parent 923707a816
commit 944eaedf2d
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -9,10 +9,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.12
- name: Configure pip caching
uses: actions/cache@v3
@@ -44,7 +44,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3