Skip to content

Commit

Permalink
ci: remove python 3.12 from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nightwnvol committed Mar 13, 2024
1 parent 1192ea1 commit ea6e9e7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,22 @@ jobs:
run_test:
strategy:
matrix:
# NOTE: Python 3.12 is not supported yet
config:
[
{os: ubuntu-latest, py: '3.8'},
{os: ubuntu-latest, py: '3.9'},
{os: ubuntu-latest, py: '3.10'},
{os: ubuntu-latest, py: '3.11'},
{os: ubuntu-latest, py: '3.12'},
# {os: ubuntu-latest, py: '3.12'},
{os: macos-latest, py: '3.8'},
{os: macos-latest, py: '3.9'},
{os: macos-latest, py: '3.10'},
{os: macos-latest, py: '3.11'},
{os: macos-latest, py: '3.12'},
# {os: macos-latest, py: '3.12'},
{os: macos-14, py: '3.10'},
{os: macos-14, py: '3.11'},
{os: macos-14, py: '3.12'}
# {os: macos-14, py: '3.12'}
]
name: Python ${{ matrix.config.py }} on ${{ matrix.config.os }}
runs-on: ${{ matrix.config.os }}
Expand Down

0 comments on commit ea6e9e7

Please sign in to comment.