Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Python 12 to testing suit #416

Merged
merged 1 commit into from
Nov 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Adding Python 12 to testing suit
  • Loading branch information
TheBurchLog authored Nov 2, 2023
commit 09805957fc989a5f0f37b6e6238ac9a410c60bc9
6 changes: 3 additions & 3 deletions .github/workflows/pr-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.8']
python-version: ['3.12']
os: ['ubuntu-latest']
name: Linting OS ${{ matrix.os }} - Python ${{ matrix.python-version }}
steps:
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
python-version: [ '3.8', '3.9', '3.10', '3.11','3.12']
os: ['ubuntu-latest']
name: PyTests OS ${{ matrix.os }} - Python ${{ matrix.python-version }}
steps:
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:

strategy:
matrix:
python-version: ['3.8']
python-version: ['3.12']
os: ['ubuntu-latest']

env:
Expand Down
Loading