From a5bfb4cd66a9dfb553febc73f4d9daba9490a472 Mon Sep 17 00:00:00 2001 From: Josh Thorpe <33478918+ThorpeJosh@users.noreply.github.com> Date: Mon, 28 Oct 2024 18:30:07 +0800 Subject: [PATCH] ci: add support for python3.13 (#107) --- .github/workflows/python-test.yml | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 3dc9e22..63519b2 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }} diff --git a/setup.py b/setup.py index 569b574..6f1d1ad 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup from image_sorting_tool import __version__ as version -REQUIREMENTS = ["Pillow~=10.3.0", "python-dateutil~=2.8"] +REQUIREMENTS = ["Pillow~=11.0.0", "python-dateutil~=2.8"] DEV_REQUIREMENTS = { "dev": [ "pytest==8.3.*", @@ -31,16 +31,16 @@ include_package_data=True, install_requires=REQUIREMENTS, extras_require=DEV_REQUIREMENTS, - python_requires=">=3.8, <3.13", + python_requires=">=3.9, <3.14", classifiers=[ "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Operating System :: MacOS",