|
18 | 18 | python-version: ${{ matrix.python-version }} |
19 | 19 | - name: Install dev dependencies |
20 | 20 | run: | |
21 | | - pip install --upgrade pip |
| 21 | + pip install --upgrade pip wheel |
22 | 22 | pip install -e .[dev] |
23 | 23 | # TODO: add `pylint src` |
24 | 24 | - name: Formatting and linters |
|
61 | 61 | python-version: ${{ matrix.python-version }} |
62 | 62 | - name: Install test dependencies |
63 | 63 | run: | |
64 | | - pip install --upgrade pip |
| 64 | + pip install --upgrade pip wheel |
65 | 65 | pip install -e .[tests] |
66 | 66 | - name: Test with pytest |
67 | 67 | env: |
|
98 | 98 | python-version: ${{ matrix.python-version }} |
99 | 99 | - name: Install test dependencies |
100 | 100 | run: | |
101 | | - pip install --upgrade pip |
| 101 | + pip install --upgrade pip wheel |
102 | 102 | pip install -e .[tests] |
103 | 103 |
|
104 | 104 | pip install pandas==${{ matrix.pandas-version }} |
@@ -133,7 +133,7 @@ jobs: |
133 | 133 | python-version: ${{ matrix.python-version }} |
134 | 134 | - name: Install test dependencies |
135 | 135 | run: | |
136 | | - pip install --upgrade pip |
| 136 | + pip install --upgrade pip wheel |
137 | 137 | pip install -e .[tests] |
138 | 138 | pip uninstall -y seaborn |
139 | 139 |
|
@@ -165,7 +165,7 @@ jobs: |
165 | 165 | python-version: ${{ matrix.python-version }} |
166 | 166 | - name: Install notebook dependencies |
167 | 167 | run: | |
168 | | - pip install --upgrade pip |
| 168 | + pip install --upgrade pip wheel |
169 | 169 | pip install -e .[tests,notebooks] |
170 | 170 | - name: Test notebooks with nbval |
171 | 171 | run: | |
@@ -215,7 +215,7 @@ jobs: |
215 | 215 | python-version: ${{ matrix.python-version }} |
216 | 216 | - name: Install dependencies |
217 | 217 | run: | |
218 | | - pip install --upgrade pip |
| 218 | + pip install --upgrade pip wheel |
219 | 219 | pip install -e .[dev] |
220 | 220 | - name: Create package |
221 | 221 | run: python setup.py sdist bdist_wheel --universal |
|
0 commit comments