From 35544226cc2df7617b3b286e7ac6f4b2b7e0d319 Mon Sep 17 00:00:00 2001 From: Daniel Gatis Date: Wed, 20 Nov 2024 13:19:56 -0300 Subject: [PATCH 1/2] 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 2449b55..4a87356 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 a841702..9138c1e 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 44cbabb..0b0b9af 100644 --- a/setup.py +++ b/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, From 4b423ef3ce583d01d6d84b6c37d11622330bafbe Mon Sep 17 00:00:00 2001 From: Daniel Gatis Date: Thu, 30 Jan 2025 12:30:08 -0300 Subject: [PATCH 2/2] empty-commit