Skip to content

Commit

Permalink
add support for python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
xnetcat committed Dec 1, 2023
1 parent c2b322c commit b64e879
Show file tree
Hide file tree
Showing 4 changed files with 403 additions and 366 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/standard-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
- name: Install poetry
run: pipx install poetry

- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
cache: 'poetry'

- name: Install dependencies
run: |
poetry env use "3.10"
poetry env use "3.11"
poetry install
- name: Check for docstring's
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
max-parallel: 4
matrix:
platform: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ "3.8", "3.10" ]
python-version: [ "3.8", "3.12" ]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -55,15 +55,15 @@ jobs:
- name: Install poetry
run: pipx install poetry

- name: Set up Python "3.10"
- name: Set up Python "3.11"
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
cache: 'poetry'

- name: Install dependencies
run: |
poetry env use "3.10"
poetry env use "3.11"
poetry install
- uses: FedericoCarboni/setup-ffmpeg@v1
Expand Down
Loading

0 comments on commit b64e879

Please sign in to comment.