Skip to content

Commit 41a3b52

Browse files
Stop testing 3.8 and 3.9, test 3.15 and PyPy3
1 parent a442794 commit 41a3b52

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/check-for-updates.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
fetch-depth: 1 # Shallow clone to save time
4747
persist-credentials: true # Needed to push the update
4848

49-
- name: Set up Python 3.12
49+
- name: Set up Python 3
5050
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
5151
with:
52-
python-version: '3.12'
52+
python-version: '3'
5353

5454
- name: Install dependencies
5555
run: |

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This workflow is triggered two ways:
1+
# This workflow is triggered in two ways:
22
#
33
# 1. When a tag is created, the workflow will upload the package to
44
# test.pypi.org.

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,16 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: ["2.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
20+
python-version: ["2.7", "3.10", "3.11", "3.12", "3.13", "3.14", "3.15t", "3.15"]
2121
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
2222
exclude:
2323
- python-version: "2.7"
2424
include:
2525
- python-version: "2.7"
2626
os: "ubuntu-latest"
2727
use-container: true
28+
# Test on latest PyPy
29+
- python-version: "pypy3"
2830
env:
2931
TOXENV: py
3032
container:

0 commit comments

Comments
 (0)