File tree Expand file tree Collapse file tree 4 files changed +25
-25
lines changed Expand file tree Collapse file tree 4 files changed +25
-25
lines changed Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff line change 4040pip 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
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ requests==2.25.1
22numpy >= 1.21.2
33geojson == 2.5.0
44xmltodict == 0.12.0
5- Pillow >= 9 .0.1 , < 10 .0.0
5+ Pillow >= 10 .0.0 , < 11 .0.0
66opencv-python == 4.7.0.72
Original file line number Diff line number Diff line change 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" ],
You can’t perform that action at this time.
0 commit comments