Skip to content

Commit b5a302a

Browse files
committed
Resolve warnings
1 parent 9e388df commit b5a302a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release_test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,9 @@ jobs:
186186
PYTHON3_WHEEL: ${{ needs.package_python3.outputs.wheel }}
187187
run: |
188188
if [[ "${{ matrix.package_type }}" == "sdist" ]]; then
189-
pip3.13 install "dist/$PYTHON3_SDIST"
189+
pip3.14 install "dist/$PYTHON3_SDIST"
190190
else
191-
pip3.13 install "dist/$PYTHON3_WHEEL"
191+
pip3.14 install "dist/$PYTHON3_WHEEL"
192192
fi
193193
194194
- name: Checkout
@@ -201,7 +201,7 @@ jobs:
201201

202202
- name: Test typing
203203
run: |
204-
pip3.13 install 'mypy<1.12.0' types-setuptools
204+
pip3.14 install 'mypy<1.12.0' types-setuptools
205205
mypy --strict typing_test/test_typing.py
206206
207207
if mypy --strict typing_test/test_badtyping.py; then

0 commit comments

Comments
 (0)