add python 3.13 support

This commit is contained in:
Daniel Gatis 2024-11-20 13:19:56 -03:00
parent e740a9681e
commit 35544226cc
3 changed files with 4 additions and 5 deletions

View File

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

View File

@ -69,7 +69,7 @@ Rembg is a tool to remove images background.
## Requirements
```text
python: >3.7, <3.13
python: >=3.10, <3.14
```
## Installation

View File

@ -76,14 +76,13 @@ setup(
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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",
],
keywords="remove, background, u2net",
python_requires=">=3.8, <3.13",
python_requires=">=3.10, <3.14",
packages=find_packages(),
install_requires=install_requires,
entry_points=entry_points,