Skip to content

Commit

Permalink
add python 3.13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgatis committed Nov 30, 2024
1 parent e740a96 commit c9552fd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

install_requires = [
"jsonschema",
"numba",
"numpy",
"opencv-python-headless",
"pillow",
Expand Down Expand Up @@ -76,14 +77,13 @@
"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,
Expand Down

0 comments on commit c9552fd

Please sign in to comment.