File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -221,6 +221,7 @@ jobs:
221
221
# - runner: ubuntu-latest
222
222
# python-version: "3.14"
223
223
224
+ # mypy hard coded to avoid 3.13.5
224
225
- runner : ubuntu-latest
225
226
python-version : " 3.13.5"
226
227
@@ -251,13 +252,13 @@ jobs:
251
252
cfg-file : ${{ inputs.cfg-file }}
252
253
pip-installs : ${{ inputs.pip-installs }}
253
254
254
- # - name: Lint with mypy
255
- # if: ${{ (matrix.python-version != env.PRERELEASE || inputs.check-prereleases == 'true') && inputs.mypy-packages != '' }}
256
- # run: mypy --python-version ${{ matrix.python-version }} ${{ inputs.mypy-packages }}
255
+ - name : Lint with mypy
256
+ if : ${{ (matrix.python-version != env.PRERELEASE || inputs.check-prereleases == 'true') && ( inputs.mypy-packages != '') && (matrix.python-version != '3.13.5') }}
257
+ run : mypy --python-version ${{ matrix.python-version }} ${{ inputs.mypy-packages }}
257
258
258
- # - name: Lint with mypy using disallow-untyped-def
259
- # if: ${{ (matrix.python-version != env.PRERELEASE || inputs.check-prereleases == 'true') && inputs.mypy-full- packages != '' }}
260
- # run: mypy --python-version ${{ matrix.python-version }} --disallow-untyped-defs ${{ inputs.mypy-full-packages }}
259
+ - name : Lint with mypy using disallow-untyped-def
260
+ if : ${{ (matrix.python-version != env.PRERELEASE || inputs.check-prereleases == 'true') && ( inputs.mypy-packages != '') && (matrix.python-version != '3.13.5') }}
261
+ run : mypy --python-version ${{ matrix.python-version }} --disallow-untyped-defs ${{ inputs.mypy-full-packages }}
261
262
262
263
- name : Lint with flake8
263
264
if : ${{ matrix.python-version != env.PRERELEASE || inputs.check-prereleases == 'true' }}
You can’t perform that action at this time.
0 commit comments