Skip to content

Commit 8cd404e

Browse files
committed
feat(cicd): install deps before building wheels for better type inference for the compiler
1 parent 3187fe7 commit 8cd404e

File tree

256 files changed

+54870
-56100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

256 files changed

+54870
-56100
lines changed

.github/workflows/build.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
python-version: "3.8"
2727
- name: Install Mypyc (3.8)
28-
run: pip install mypy[mypyc]==1.14.1 types-requests
28+
run: pip install mypy[mypyc]==1.14.1 types-requests .
2929
- name: Run Mypyc (3.8)
3030
env:
3131
MYPYC_STRICT_DUNDER_TYPING: 1
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
python-version: "3.9"
3939
- name: Install Mypyc (3.9)
40-
run: pip install mypy[mypyc]==1.16.0 types-requests
40+
run: pip install mypy[mypyc]==1.16.0 types-requests .
4141
- name: Run Mypyc (3.9)
4242
env:
4343
MYPYC_STRICT_DUNDER_TYPING: 1
@@ -49,7 +49,7 @@ jobs:
4949
with:
5050
python-version: "3.10"
5151
- name: Install Mypyc (3.10)
52-
run: pip install mypy[mypyc]==1.16.0 types-requests
52+
run: pip install mypy[mypyc]==1.16.0 types-requests .
5353
- name: Run Mypyc (3.10)
5454
env:
5555
MYPYC_STRICT_DUNDER_TYPING: 1
@@ -61,7 +61,7 @@ jobs:
6161
with:
6262
python-version: "3.11"
6363
- name: Install Mypyc (3.11)
64-
run: pip install mypy[mypyc]==1.16.0 types-requests
64+
run: pip install mypy[mypyc]==1.16.0 types-requests .
6565
- name: Run Mypyc (3.11)
6666
env:
6767
MYPYC_STRICT_DUNDER_TYPING: 1
@@ -73,7 +73,7 @@ jobs:
7373
with:
7474
python-version: "3.12"
7575
- name: Install Mypyc (3.12)
76-
run: pip install mypy[mypyc]==1.16.0 types-requests
76+
run: pip install mypy[mypyc]==1.16.0 types-requests .
7777
- name: Run Mypyc (3.12)
7878
env:
7979
MYPYC_STRICT_DUNDER_TYPING: 1
@@ -111,7 +111,7 @@ jobs:
111111
with:
112112
python-version: "3.8"
113113
- name: Install Mypyc (3.8)
114-
run: pip install mypy[mypyc]==1.14.1 types-requests
114+
run: pip install mypy[mypyc]==1.14.1 types-requests .
115115
- name: Run Mypyc (3.8)
116116
env:
117117
MYPYC_STRICT_DUNDER_TYPING: 1
@@ -123,7 +123,7 @@ jobs:
123123
with:
124124
python-version: "3.9"
125125
- name: Install Mypyc (3.9)
126-
run: pip install mypy[mypyc]==1.16.0 types-requests
126+
run: pip install mypy[mypyc]==1.16.0 types-requests .
127127
- name: Run Mypyc (3.9)
128128
env:
129129
MYPYC_STRICT_DUNDER_TYPING: 1
@@ -135,7 +135,7 @@ jobs:
135135
with:
136136
python-version: "3.10"
137137
- name: Install Mypyc (3.10)
138-
run: pip install mypy[mypyc]==1.16.0 types-requests
138+
run: pip install mypy[mypyc]==1.16.0 types-requests .
139139
- name: Run Mypyc (3.10)
140140
env:
141141
MYPYC_STRICT_DUNDER_TYPING: 1
@@ -147,7 +147,7 @@ jobs:
147147
with:
148148
python-version: "3.11"
149149
- name: Install Mypyc (3.11)
150-
run: pip install mypy[mypyc]==1.16.0 types-requests
150+
run: pip install mypy[mypyc]==1.16.0 types-requests .
151151
- name: Run Mypyc (3.11)
152152
env:
153153
MYPYC_STRICT_DUNDER_TYPING: 1
@@ -159,7 +159,7 @@ jobs:
159159
with:
160160
python-version: "3.12"
161161
- name: Install Mypyc (3.12)
162-
run: pip install mypy[mypyc]==1.16.0 types-requests
162+
run: pip install mypy[mypyc]==1.16.0 types-requests .
163163
- name: Run Mypyc (3.12)
164164
env:
165165
MYPYC_STRICT_DUNDER_TYPING: 1
@@ -197,7 +197,7 @@ jobs:
197197
with:
198198
python-version: "3.8"
199199
- name: Install Mypyc (3.8)
200-
run: pip install mypy[mypyc]==1.14.1 types-requests
200+
run: pip install mypy[mypyc]==1.14.1 types-requests .
201201
- name: Run Mypyc (3.8)
202202
env:
203203
MYPYC_STRICT_DUNDER_TYPING: 1
@@ -209,7 +209,7 @@ jobs:
209209
with:
210210
python-version: "3.9"
211211
- name: Install Mypyc (3.9)
212-
run: pip install mypy[mypyc]==1.16.0 types-requests
212+
run: pip install mypy[mypyc]==1.16.0 types-requests .
213213
- name: Run Mypyc (3.9)
214214
env:
215215
MYPYC_STRICT_DUNDER_TYPING: 1
@@ -221,7 +221,7 @@ jobs:
221221
with:
222222
python-version: "3.10"
223223
- name: Install Mypyc (3.10)
224-
run: pip install mypy[mypyc]==1.16.0 types-requests
224+
run: pip install mypy[mypyc]==1.16.0 types-requests .
225225
- name: Run Mypyc (3.10)
226226
env:
227227
MYPYC_STRICT_DUNDER_TYPING: 1
@@ -233,7 +233,7 @@ jobs:
233233
with:
234234
python-version: "3.11"
235235
- name: Install Mypyc (3.11)
236-
run: pip install mypy[mypyc]==1.16.0 types-requests
236+
run: pip install mypy[mypyc]==1.16.0 types-requests .
237237
- name: Run Mypyc (3.11)
238238
env:
239239
MYPYC_STRICT_DUNDER_TYPING: 1
@@ -245,7 +245,7 @@ jobs:
245245
with:
246246
python-version: "3.12"
247247
- name: Install Mypyc (3.12)
248-
run: pip install mypy[mypyc]==1.16.0 types-requests
248+
run: pip install mypy[mypyc]==1.16.0 types-requests .
249249
- name: Run Mypyc (3.12)
250250
env:
251251
MYPYC_STRICT_DUNDER_TYPING: 1
-1 KB
Binary file not shown.
-1 KB
Binary file not shown.
-3 KB
Binary file not shown.
-1 KB
Binary file not shown.
-1.25 KB
Binary file not shown.
-18.1 KB
Binary file not shown.
-17.3 KB
Binary file not shown.
-10 KB
Binary file not shown.
-1.25 KB
Binary file not shown.

0 commit comments

Comments
 (0)