Skip to content

Commit 05de145

Browse files
authored
fix: remove typing deprecations (#62)
2 parents 9b5147b + 560ead7 commit 05de145

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/python-release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ on:
1010

1111
concurrency:
1212
group: bump-and-release-${{ github.ref }}
13-
cancel-in-progress: true
13+
cancel-in-progress:
14+
${{ ! startsWith(github.event.head_commit.message, 'bump:') }}
1415

1516
jobs:
1617
black:
@@ -35,7 +36,7 @@ jobs:
3536

3637
release:
3738
needs: test
38-
if: ${{ !startsWith(github.event.head_commit.message, 'bump:') }}
39+
if: ${{ ! startsWith(github.event.head_commit.message, 'bump:') }}
3940
# Don't run 'bump:'
4041
permissions:
4142
contents: write

src/pointofview/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
"""
88

99
import re
10+
from collections import OrderedDict
1011
from importlib import metadata
11-
from typing import OrderedDict, Optional
12+
from typing import Optional
1213

1314
__version__ = metadata.version(__name__)
1415

0 commit comments

Comments
 (0)