Skip to content

Commit 064cd0e

Browse files
Fix dependabot error, add support for python 3.13 (and drop 3.8) (#90)
* Fix dependabot error, add support for python 3.13 (and drop 3.8) * Drop the package-mode option * Additional fixes to make CI working * Update lock file
1 parent 0211058 commit 064cd0e

3 files changed

Lines changed: 370 additions & 322 deletions

File tree

.github/workflows/python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
strategy:
2626
matrix:
27-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
27+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2828
env:
2929
POETRY_CACHE_DIR: ~/.cache/pypoetry-${{ matrix.python-version }}
3030

@@ -55,7 +55,7 @@ jobs:
5555
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
5656
poetry run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --exclude onfido
5757
- name: Test with pytest
58-
if: ${{ matrix.python-version == '3.12' &&
58+
if: ${{ matrix.python-version == '3.13' &&
5959
github.repository_owner == 'onfido' }}
6060
run: |
6161
poetry run pytest --show-capture=no

0 commit comments

Comments
 (0)