Skip to content

Commit

Permalink
allow testing on python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech committed Sep 26, 2023
1 parent d6cdb19 commit b62baa9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ jobs:
build:
strategy:
matrix:
version: ["3.9", "3.10", "3.11"]
version: ["3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.version }}"
allow-prereleases: true

- name: Build and run tests
run: |
Expand Down

0 comments on commit b62baa9

Please sign in to comment.