Skip to content

Commit

Permalink
Update python testing workflow configuration
Browse files Browse the repository at this point in the history
The changes in the configuration file for the Python testing workflow include reducing the maximum parallel jobs from 7 to 6. The range of Python versions tested against has also been expanded to include 3.7, and all versions
  • Loading branch information
Jochem Berends committed Jun 21, 2024
1 parent 29d1ae3 commit 176ab46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:

runs-on: ubuntu-latest
strategy:
max-parallel: 7
max-parallel: 6
fail-fast: False
matrix:
python-version: [3.8, 3.9, 3.10, 3.11, 3.12, pypy3]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

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

0 comments on commit 176ab46

Please sign in to comment.