Skip to content

Commit c6649e6

Browse files
authored
Update references to main (#38)
1 parent 19291a6 commit c6649e6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Test and Deploy
22
on:
33
pull_request:
44
branches:
5-
- master
5+
- main
66
push:
77
branches:
8-
- master
8+
- main
99
create:
1010
tags:
1111
- '*'
@@ -84,7 +84,7 @@ jobs:
8484
python setup.py sdist
8585
python setup.py bdist_wheel
8686
- name: Publish a Python distribution to PyPI
87-
uses: pypa/gh-action-pypi-publish@master
87+
uses: pypa/gh-action-pypi-publish@main
8888
with:
8989
user: __token__
9090
password: ${{ secrets.pypi_password }}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
)
1515
version = ret.stdout.decode("utf-8").strip()
1616
except:
17-
version = "master"
17+
version = "main"
1818

1919
with open("README.md", "r", encoding="utf-8") as readme:
2020
long_description = readme.read()

0 commit comments

Comments
 (0)