Skip to content

Commit cfdd721

Browse files
committed
Fix upload to pypi test
1 parent 3da43e6 commit cfdd721

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
with:
6767
a: ${{ matrix.python-version }}
6868
b: 3.9
69-
69+
7070
- name: Store dists (Python 3.9)
7171
if: steps.isLatest.outputs.result
7272
uses: actions/upload-artifact@v2

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
import setuptools
4-
setuptools.setup(use_scm_version={"write_to": "guake/_version.py"})
4+
5+
setuptools.setup(
6+
use_scm_version={"write_to": "guake/_version.py", "local_scheme": "no-local-version"}
7+
)

0 commit comments

Comments
 (0)