File tree Expand file tree Collapse file tree 4 files changed +1
-6
lines changed Expand file tree Collapse file tree 4 files changed +1
-6
lines changed Original file line number Diff line number Diff line change 61
61
version : PATH
62
62
python-platform : ${{ matrix.python-platform }}
63
63
python-version : " 3.9" # Oldest version supported for running scripts and tests
64
- extra-args : --threads
65
64
project : ./pyrightconfig.scripts_and_tests.json
66
65
stubsabot-dry-run :
67
66
name : Stubsabot dry run
Original file line number Diff line number Diff line change @@ -145,15 +145,13 @@ jobs:
145
145
version : PATH
146
146
python-platform : ${{ matrix.python-platform }}
147
147
python-version : ${{ matrix.python-version }}
148
- extra-args : --threads
149
148
annotate : ${{ matrix.python-version == '3.12' && matrix.python-platform == 'Linux' }} # Having each job create the same comment is too noisy.
150
149
- name : Run pyright with stricter settings on some of the stubs
151
150
uses : jakebailey/pyright-action@v2
152
151
with :
153
152
version : PATH
154
153
python-platform : ${{ matrix.python-platform }}
155
154
python-version : ${{ matrix.python-version }}
156
- extra-args : --threads
157
155
annotate : ${{ matrix.python-version == '3.12' && matrix.python-platform == 'Linux' }} # Having each job create the same comment is too noisy.
158
156
project : ./pyrightconfig.stricter.json
159
157
- name : Run pyright on the test cases
@@ -162,7 +160,6 @@ jobs:
162
160
version : PATH
163
161
python-platform : ${{ matrix.python-platform }}
164
162
python-version : ${{ matrix.python-version }}
165
- extra-args : --threads
166
163
annotate : ${{ matrix.python-version == '3.12' && matrix.python-platform == 'Linux' }} # Having each job create the same comment is too noisy.
167
164
project : ./pyrightconfig.testcases.json
168
165
Original file line number Diff line number Diff line change 100
100
" stubs/vobject" ,
101
101
" stubs/workalendar" ,
102
102
" stubs/wurlitzer" ,
103
- " stubs/xdgenvpy"
104
103
],
105
104
"typeCheckingMode" : " strict" ,
106
105
// TODO: Complete incomplete stubs
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ def main() -> None:
37
37
# version installed into the virtual environment, due to failures on some
38
38
# platforms. https://github.com/python/typeshed/issues/11614
39
39
os .environ ["PYRIGHT_PYTHON_FORCE_VERSION" ] = pyright_version
40
- command = [npx , f"pyright@{ pyright_version } " ] + sys .argv [1 :] + [ "--threads" ]
40
+ command = [npx , f"pyright@{ pyright_version } " ] + sys .argv [1 :]
41
41
print_command (command )
42
42
43
43
ret = subprocess .run (command ).returncode
You can’t perform that action at this time.
0 commit comments