Skip to content

Commit

Permalink
build: add support to Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
joaodaher committed Nov 22, 2023
1 parent 1bc1c4b commit c9fb7de
Show file tree
Hide file tree
Showing 6 changed files with 358 additions and 362 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11.x'
python-version: '3.12.x'
cache: poetry

- name: Install Python dependencies
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.11.x' ]
python-version: [ '3.11.x', '3.12.x' ]
steps:
- uses: actions/checkout@v3
- name: Install poetry
Expand All @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.11.x' ]
python-version: [ '3.11.x', '3.12.x' ]
steps:
- uses: actions/checkout@v3
- name: Install poetry
Expand All @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.11.x' ]
python-version: [ '3.11.x', '3.12.x' ]
steps:
- uses: actions/checkout@v3
- name: Install poetry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11.x'
python-version: '3.12.x'
cache: poetry

- name: Setup Environment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11.x'
python-version: '3.12.x'
cache: poetry
- name: Setup Environment
run: |
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.11.4
3.12.0
Loading

0 comments on commit c9fb7de

Please sign in to comment.