Skip to content

Commit

Permalink
removed python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgatis committed Nov 24, 2022
1 parent 354f531 commit e9cc8cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.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.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Rembg is a tool to remove images background. That is it.
### Requirements

```
python: >=3.7, <3.11
python: >3.7, <3.11
```

### Installation
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,13 @@
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
keywords="remove, background, u2net",
packages=["rembg"],
python_requires=">=3.7, <3.11",
python_requires=">3.7, <3.11",
install_requires=requireds,
entry_points={
"console_scripts": [
Expand Down

0 comments on commit e9cc8cf

Please sign in to comment.