Skip to content

Commit

Permalink
Merge pull request #34 from JPHutchins/feature/support-python3.13.0-rc.2
Browse files Browse the repository at this point in the history
python: support 3.13.0-rc.2
  • Loading branch information
JPHutchins authored Sep 18, 2024
2 parents e5cd4ba + 635e79d commit aed28e6
Show file tree
Hide file tree
Showing 4 changed files with 249 additions and 229 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: Lint
on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]

jobs:
lint:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-rc.2"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}

Expand All @@ -20,7 +20,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
cache: "poetry"
- run: poetry install

- name: Lint (Linux or MacOS)
Expand All @@ -29,7 +29,7 @@ jobs:
shopt -s expand_aliases
. ./envr.ps1
lint
- name: Lint (Windows)
if: matrix.os == 'windows-latest'
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: Test
on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]

jobs:
tests:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-rc.2"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}

Expand All @@ -22,8 +22,8 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
cache: "poetry"

- run: poetry install

- name: Test (Linux or MacOS)
Expand All @@ -32,7 +32,7 @@ jobs:
shopt -s expand_aliases
. ./envr.ps1
test
- name: Test (Windows)
if: matrix.os == 'windows-latest'
run: |
Expand Down
Loading

0 comments on commit aed28e6

Please sign in to comment.