Skip to content

Commit

Permalink
ci: add support for python3.13 (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThorpeJosh authored Oct 28, 2024
1 parent e75dd08 commit a5bfb4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.*",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit a5bfb4c

Please sign in to comment.