From d767ab70956bfbf2b3605cdbbb9e949fc67819c1 Mon Sep 17 00:00:00 2001 From: Simon Conseil Date: Mon, 18 Nov 2024 18:42:10 +0100 Subject: [PATCH] add python 3.13 --- .github/workflows/python-tests.yml | 2 +- tox.ini | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 313ca9d..2269f70 100644 --- a/.github/workflows/python-tests.yml +++ b/.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 diff --git a/tox.ini b/tox.ini index cbef192..618e590 100644 --- a/tox.ini +++ b/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