Skip to content

Commit a6556fb

Browse files
committed
Revise GitHub Actions Python versioning
Semantic versioning appears to be required now for version specifications. Updated checkout to v3 (whatever that means) Also, PyPy appears to be done and dusted in GitHub, and I don't know anyone using it anyway, so this patch removes it from the GitHub Actions testing.
1 parent 5b9891b commit a6556fb

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/testing.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, pypy2, pypy3]
10+
os: [macos-latest, windows-latest, ubuntu-18.04, ubuntu-20.04]
11+
python: [2.7.18, 3.5.10, 3.6.15, 3.7.16, 3.8.16, 3.9.16, 3.10.10, 3.11.2]
1112
steps:
12-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1314
- name: Set up Python ${{ matrix.python-version }}
1415
uses: actions/setup-python@v2
1516
with:

0 commit comments

Comments
 (0)