Skip to content

Commit 9e4a358

Browse files
committed
Merge branch 'develop'
2 parents a953c42 + c312db8 commit 9e4a358

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@master
14-
- name: Set up Python 3.7
14+
- name: Set up Python 3.8
1515
uses: actions/setup-python@v1
1616
with:
17-
python-version: 3.7
17+
python-version: 3.8
1818
- name: Install twine
1919
run: >-
2020
pip install twine
2121
- name: Build a binary wheel and a source tarball
2222
run: >-
2323
python setup.py sdist
2424
- name: Publish distribution 📦 to PyPI
25-
if: startsWith(github.event.ref, 'refs/tags')
25+
if: startsWith(github.ref, 'refs/tags')
2626
uses: pypa/gh-action-pypi-publish@master
2727
with:
2828
password: ${{ secrets.pypi_password }}

.github/workflows/wiki.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v1
15-
- name: Install Python 3.7
15+
- name: Install Python 3.8
1616
uses: actions/setup-python@v1
1717
with:
18-
python-version: 3.7
18+
python-version: 3.8
1919
- name: Install dependencies
2020
run: >-
2121
pip install pydoc-markdown mkdocs

0 commit comments

Comments
 (0)