From 35544226cc2df7617b3b286e7ac6f4b2b7e0d319 Mon Sep 17 00:00:00 2001 From: Daniel Gatis Date: Wed, 20 Nov 2024 13:19:56 -0300 Subject: [PATCH] add python 3.13 support --- .github/workflows/test_install.yml | 2 +- README.md | 2 +- setup.py | 5 ++--- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index 2449b557..4a87356e 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -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 diff --git a/README.md b/README.md index a841702c..9138c1e4 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/setup.py b/setup.py index 44cbabbc..0b0b9afd 100644 --- a/setup.py +++ b/setup.py @@ -76,14 +76,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,