Browse Source

add python 3.13

pull/518/merge
Simon Conseil 1 year ago
parent
commit
d767ab7095
  1. 2
      .github/workflows/python-tests.yml
  2. 8
      tox.ini

2
.github/workflows/python-tests.yml

@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10", "3.11", "3.12"]
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4

8
tox.ini

@ -1,13 +1,14 @@
[tox]
envlist = py{39,310,311,312}-pillow{80,90,100,-latest},pypy3,check
envlist = py{39,310,311,312,313}-pillow{80,90,100,110,-latest},pypy3,check
skip_missing_interpreters = true
[gh-actions]
python =
3.9: py39-pillow90
3.10: py310-pillow100
3.11: py311-pillow-latest
3.12: py312-pillow-latest
3.11: py311-pillow100
3.12: py312-pillow110
3.13: py312-pillow-latest
pypy3: pypy3
[testenv]
@ -17,6 +18,7 @@ deps =
pillow80: Pillow==8.0.1
pillow90: Pillow==9.0.1
pillow100: Pillow==10.0.1
pillow110: Pillow==11.0.0
extras =
all
tests

Loading…
Cancel
Save