Skip to content

Commit 1b4cfc4

Browse files
committed
CI: Restore previous pip install method
This reverts commit 1ad01ad "CI: Install python3-build & add --break-system-packages for Localstripe", merged 5 days ago. Since then, the CI broke again, with errors like: $ python -m build RuntimeError: Virtual environment creation failed, executable /tmp/build-…/local/bin/python missing I found that using our previous `pip install` commands worked. GitHub or Ubuntu maintainers probably fixed the inconveniences described by Hoël at #234.
1 parent 4e29f09 commit 1b4cfc4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ jobs:
4141
uses: actions/setup-python@v4
4242
with:
4343
python-version: ${{ matrix.pyver }}
44-
- run: sudo apt install python3-build
44+
- run: pip install 'pip >=23' build
4545
- run: python -m build
46-
- run: pip install dist/localstripe-*.tar.gz --break-system-packages
46+
- run: pip install dist/localstripe-*.tar.gz
4747
- run: python -m localstripe &
4848
# Wait for server to be up:
4949
- run: >

0 commit comments

Comments
 (0)