Skip to content

Commit d41d9ba

Browse files
committed
Merge branch 'master' into fix/implicit
2 parents 9f01136 + 087cf73 commit d41d9ba

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: [3.6, 3.9]
20+
python-version: [3.8, 3.12]
2121

2222
steps:
2323
- uses: actions/checkout@v2

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
mypy==0.790
1+
mypy~=1.6.0

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ classifiers =
2222

2323
[options]
2424
packages = subman
25-
python_requires = >=3.6
25+
python_requires = >=3.8
2626

2727
[options.package_data]
2828
subman = py.typed

subman/subman.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class SubscriptionManager:
4141

4242
def __init__(
4343
self, *,
44-
error_matrix: ActionStateErrorMatrix = None,
44+
error_matrix: Optional[ActionStateErrorMatrix] = None,
4545
unwritten_states: Optional[StateColl] = None,
4646
) -> None:
4747
"""

0 commit comments

Comments
 (0)