Explorar el Código

add python 3.13 support

Daniel Gatis hace 9 meses
padre
commit
35544226cc
Se han modificado 3 ficheros con 4 adiciones y 5 borrados
  1. 1 1
      .github/workflows/test_install.yml
  2. 1 1
      README.md
  3. 2 3
      setup.py

+ 1 - 1
.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

+ 1 - 1
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

+ 2 - 3
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,