File tree Expand file tree Collapse file tree 4 files changed +41
-2
lines changed
Expand file tree Collapse file tree 4 files changed +41
-2
lines changed Original file line number Diff line number Diff line change 1+ name : pypi_upload
2+
3+ on :
4+ release :
5+ types : [created]
6+
7+ jobs :
8+ upload :
9+ name : PyPI Upload
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - uses : actions/checkout@v1
14+
15+ - name : Set up Python 3.7
16+ uses : actions/setup-python@v1
17+ with :
18+ python-version : 3.7
19+
20+ - name : Install latest pip, setuptools, twine + wheel
21+ run : |
22+ python -m pip install --upgrade pip setuptools twine wheel
23+
24+ - name : Build sdist + wheel
25+ run : |
26+ python setup.py bdist_wheel
27+ python setup.py sdist
28+
29+ - name : Upload to PyPI via Twine
30+ env :
31+ TWINE_PASSWORD : ${{ secrets.PYPI_TOKEN }}
32+ run : |
33+ twine upload --verbose -u '__token__' dist/*
Original file line number Diff line number Diff line change 228228Change Log
229229----------
230230
231+ 20.1.0
232+ ~~~~~~
233+
234+ * Warn about continue/return/break in finally block (#100)
235+ * Removed a colon from the descriptive message in B008. (#96)
236+
23123719.8.0
232238~~~~~~
233239
Original file line number Diff line number Diff line change 99import pycodestyle
1010
1111
12- __version__ = "19.8 .0"
12+ __version__ = "20.1 .0"
1313
1414LOG = logging .getLogger ("flake8.bugbear" )
1515
Original file line number Diff line number Diff line change 11[bdist_wheel]
2- python-tag = py35. py36.py37
2+ python-tag = py36.py37.py38
33
44[flake8]
55# Keep in sync with .flake8. This copy here is needed for source packages
You can’t perform that action at this time.
0 commit comments