We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9b5147b + 560ead7 commit 05de145Copy full SHA for 05de145
2 files changed
.github/workflows/python-release.yml
@@ -10,7 +10,8 @@ on:
10
11
concurrency:
12
group: bump-and-release-${{ github.ref }}
13
- cancel-in-progress: true
+ cancel-in-progress:
14
+ ${{ ! startsWith(github.event.head_commit.message, 'bump:') }}
15
16
jobs:
17
black:
@@ -35,7 +36,7 @@ jobs:
35
36
37
release:
38
needs: test
- if: ${{ !startsWith(github.event.head_commit.message, 'bump:') }}
39
+ if: ${{ ! startsWith(github.event.head_commit.message, 'bump:') }}
40
# Don't run 'bump:'
41
permissions:
42
contents: write
src/pointofview/__init__.py
@@ -7,8 +7,9 @@
7
"""
8
9
import re
+from collections import OrderedDict
from importlib import metadata
-from typing import OrderedDict, Optional
+from typing import Optional
__version__ = metadata.version(__name__)
0 commit comments