Skip to content

Commit

Permalink
Update Python version matrix in GitHub actions
Browse files Browse the repository at this point in the history
The matrix of Python versions in the GitHub Actions configuration has been revised. Python 3.10 has been removed, and the process will now only use Python 3.8 and 3.9 for running the unit tests.
  • Loading branch information
Pfitzer committed Jan 16, 2024
1 parent bd037c9 commit 4de640a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/unittest.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.9, 3.10]
python-version: [3.8, 3.9]

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 4de640a

Please sign in to comment.