Skip to content

Commit 0af89e4

Browse files
Update ci.yml to try to avoid pip version check bug.
1 parent 222bd35 commit 0af89e4

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
branches:
66
- stable
77
- main
8-
- mxfp
98
- 4.1-update
109
tags:
1110
- v*
@@ -25,6 +24,8 @@ jobs:
2524
build:
2625
name: Build ${{ matrix.os.name }} ${{ matrix.python.name }}
2726
runs-on: ${{ matrix.os.runs-on }}
27+
env:
28+
PIP_DISABLE_PIP_VERSION_CHECK: 1
2829
strategy:
2930
fail-fast: false
3031
matrix:
@@ -39,8 +40,6 @@ jobs:
3940
- uses: actions/checkout@v4
4041

4142
- uses: actions/setup-python@v5
42-
env:
43-
PIP_DISABLE_PIP_VERSION_CHECK: 1
4443
with:
4544
# This allows the matrix to specify just the major.minor version while still
4645
# expanding it to get the latest patch version including alpha releases.
@@ -55,7 +54,6 @@ jobs:
5554

5655
- name: Setup environment
5756
run: |
58-
python -m pip install --upgrade pip
5957
python -m pip install build
6058
6159
- name: Build sdist and wheel

0 commit comments

Comments
 (0)