Skip to content

Commit 13ff8be

Browse files
committed
TYP: typecheck with Python 3.11 too
1 parent a77ba0d commit 13ff8be

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,11 @@ jobs:
147147

148148

149149
typecheck:
150+
strategy:
151+
matrix:
152+
python-version:
153+
- '3.8'
154+
- '3.11'
150155
runs-on: ubuntu-latest
151156
name: type check
152157

@@ -157,7 +162,7 @@ jobs:
157162
- name: Set up Python
158163
uses: actions/setup-python@v4
159164
with:
160-
python-version: '3.8'
165+
python-version: ${{ matrix.python-version }}
161166

162167
- name: Build
163168
run: |

requirements/typecheck.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
mypy==1.4.1
2-
numpy==1.24.3

0 commit comments

Comments
 (0)