Skip to content

Commit

Permalink
Add Python 3.12 to GitHub Actions
Browse files Browse the repository at this point in the history
Not released yet, but useful.
  • Loading branch information
Vogtinator authored and M0ses committed Jul 18, 2023
1 parent fcc67ed commit 95e306f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11']
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand All @@ -39,9 +39,10 @@ jobs:
locale
- name: Setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: Install python dependencies
run: pip install -r requirements.txt
Expand Down

0 comments on commit 95e306f

Please sign in to comment.