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 1af2cdd commit caf3080Copy full SHA for caf3080
.github/workflows/python-publish.yml
@@ -14,6 +14,8 @@ jobs:
14
15
steps:
16
- uses: actions/checkout@v2
17
+ with:
18
+ fetch-depth: 0
19
- name: Set up Python
20
uses: actions/setup-python@v2
21
with:
@@ -27,5 +29,5 @@ jobs:
27
29
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
28
30
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
31
run: |
- python setup.py sdist bdist_wheel
32
+ python setup.py bdist_wheel
33
twine upload dist/*
setup.cfg
@@ -7,7 +7,7 @@ universal = 1
7
8
[versioneer]
9
VCS = git
10
-style = pep440
+style = pep440-pre
11
versionfile_source = emojificate/_version.py
12
versionfile_build = emojificate/_version.py
13
tag_prefix =
0 commit comments