Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 26, 2024
1 parent 6018a95 commit d83610b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Build and package
env:
CHECK_VERSION: "true"
CHECK_VERSION: 'true'
run: |
pip install wheel
python setup.py sdist bdist_wheel
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ def check_tag_version():
expected_version = read_version()
if tag != f"refs/tags/{expected_version}":
raise Exception(
f"Tag '{tag}' does not match the expected " f"version '{expected_version}'"
f"Tag '{tag}' does not match the expected "
f"version '{expected_version}'"
)


Expand Down

0 comments on commit d83610b

Please sign in to comment.