Skip to content

Commit cafcf7b

Browse files
Merge pull request #178 from fastlabel/update_pillow
pillow update ver_10
2 parents 6eb8d51 + aa5d4d7 commit cafcf7b

File tree

4 files changed

+25
-25
lines changed

4 files changed

+25
-25
lines changed

.github/workflows/release.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,30 @@ jobs:
99
build-n-publish:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- name: Checkout
13-
uses: actions/checkout@v2
12+
- name: Checkout
13+
uses: actions/checkout@v2
1414

15-
- name: Set up Python
16-
uses: actions/setup-python@v2
17-
with:
18-
python-version: '3.7'
15+
- name: Set up Python
16+
uses: actions/setup-python@v2
17+
with:
18+
python-version: "3.8"
1919

20-
- name: Install dependencies
21-
run: |
22-
python -m pip install --upgrade pip
23-
pip install setuptools wheel
20+
- name: Install dependencies
21+
run: |
22+
python -m pip install --upgrade pip
23+
pip install setuptools wheel
2424
25-
- name: Build
26-
run: |
27-
python setup.py sdist
28-
python setup.py bdist_wheel
25+
- name: Build
26+
run: |
27+
python setup.py sdist
28+
python setup.py bdist_wheel
2929
30-
- name: Check
31-
run: |
32-
ls ./dist
30+
- name: Check
31+
run: |
32+
ls ./dist
3333
34-
- name: Publish a Python distribution to PyPI
35-
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
36-
uses: pypa/gh-action-pypi-publish@master
37-
with:
38-
password: ${{ secrets.PYPI_API_TOKEN }}
34+
- name: Publish a Python distribution to PyPI
35+
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
36+
uses: pypa/gh-action-pypi-publish@master
37+
with:
38+
password: ${{ secrets.PYPI_API_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
pip install --upgrade fastlabel
4141
```
4242

43-
> Python version 3.7 or greater is required
43+
> Python version 3.8 or greater is required
4444
4545
## Usage
4646

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ requests==2.25.1
22
numpy>=1.21.2
33
geojson==2.5.0
44
xmltodict==0.12.0
5-
Pillow>=9.0.1,<10.0.0
5+
Pillow>=10.0.0,<11.0.0
66
opencv-python==4.7.0.72

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
long_description_content_type="text/markdown",
1616
packages=setuptools.find_packages(),
1717
install_requires=install_requires,
18-
python_requires=">=3.7",
18+
python_requires=">=3.8",
1919
include_package_data=True,
2020
use_scm_version=True,
2121
setup_requires=["setuptools_scm"],

0 commit comments

Comments
 (0)