We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6018a95 commit f59d141Copy full SHA for f59d141
.github/workflows/release.yml
@@ -24,7 +24,7 @@ jobs:
24
25
- name: Build and package
26
env:
27
- CHECK_VERSION: "true"
+ CHECK_VERSION: 'true'
28
run: |
29
pip install wheel
30
python setup.py sdist bdist_wheel
setup.py
@@ -14,7 +14,8 @@ def check_tag_version():
14
expected_version = read_version()
15
if tag != f"refs/tags/{expected_version}":
16
raise Exception(
17
- f"Tag '{tag}' does not match the expected " f"version '{expected_version}'"
+ f"Tag '{tag}' does not match the expected "
18
+ f"version '{expected_version}'"
19
)
20
21
0 commit comments