Skip to content

Commit fb74396

Browse files
committed
Don't use pip install --user
1 parent 5e78ccf commit fb74396

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/buildwheel.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,12 @@ jobs:
130130
os: [ubuntu-24.04]
131131
steps:
132132
- uses: actions/checkout@v4
133+
- uses: actions/setup-python@v5
134+
with:
135+
python-version: '3.12'
133136
- run: sudo apt-get update
134-
- run: sudo apt-get install libflint-dev python3-pip
135-
- run: pip install --user .
137+
- run: sudo apt-get install libflint-dev
138+
- run: pip install .
136139
- run: python -m flint.test --verbose
137140

138141
# For older Ubuntu we have to build Flint >= 3.0.0
@@ -146,6 +149,9 @@ jobs:
146149
flint-tag: ['v3.0.0', 'v3.0.1', 'v3.1.0', 'v3.1.1', 'v3.1.2', 'main']
147150
steps:
148151
- uses: actions/checkout@v4
152+
- uses: actions/setup-python@v5
153+
with:
154+
python-version: '3.12'
149155
- run: bin/install_flint_ubuntu.sh ${{ matrix.flint-tag }}
150-
- run: pip install --user .
156+
- run: pip install .
151157
- run: python -m flint.test --verbose

0 commit comments

Comments
 (0)