We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19291a6 commit c6649e6Copy full SHA for c6649e6
.github/workflows/workflow.yml
@@ -2,10 +2,10 @@ name: Test and Deploy
2
on:
3
pull_request:
4
branches:
5
- - master
+ - main
6
push:
7
8
9
create:
10
tags:
11
- '*'
@@ -84,7 +84,7 @@ jobs:
84
python setup.py sdist
85
python setup.py bdist_wheel
86
- name: Publish a Python distribution to PyPI
87
- uses: pypa/gh-action-pypi-publish@master
+ uses: pypa/gh-action-pypi-publish@main
88
with:
89
user: __token__
90
password: ${{ secrets.pypi_password }}
setup.py
@@ -14,7 +14,7 @@
14
)
15
version = ret.stdout.decode("utf-8").strip()
16
except:
17
- version = "master"
+ version = "main"
18
19
with open("README.md", "r", encoding="utf-8") as readme:
20
long_description = readme.read()
0 commit comments