Skip to content

Commit

Permalink
Support Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
gutzbenj committed Feb 20, 2024
1 parent 804c358 commit 4b5b532
Show file tree
Hide file tree
Showing 4 changed files with 532 additions and 521 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest"]
python-version: ["3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]
include:
- os: "macos-latest"
python-version: "3.11"
python-version: "3.12"
- os: "windows-latest"
python-version: "3.11"
python-version: "3.12"
defaults:
run:
shell: bash
Expand Down Expand Up @@ -59,8 +59,8 @@ jobs:
run: poetry install --no-interaction --no-root --with=dev,test

- name: Unit tests
run: poetry run pytest -m unit
run: poe test unit

- name: Integration tests
if: ${{ ! github.event.pull_request.head.repo.fork }}
run: poetry run pytest -m integration || [[ $? -eq 5 ]] # allow zero pytest tests if not authed with Google Cloud
run: poe test integration || [[ $? -eq 5 ]] # allow zero pytest tests if not authed with Google Cloud
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Development
***********

- support Python 3.12

0.4.1 (2023-11-21)
******************

Expand Down
Loading

0 comments on commit 4b5b532

Please sign in to comment.