mirror of
https://git.mirrors.martin98.com/https://github.com/danielgatis/rembg
synced 2025-04-18 11:49:48 +08:00
add python 3.13 support
This commit is contained in:
parent
e740a9681e
commit
35544226cc
2
.github/workflows/test_install.yml
vendored
2
.github/workflows/test_install.yml
vendored
@ -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
|
||||
|
@ -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
|
||||
|
5
setup.py
5
setup.py
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user