0 parents commit 4769167Copy full SHA for 4769167
1 file changed
.github/workflows/demo.yml
@@ -0,0 +1,23 @@
1
+name: PyPy pip bug MRE
2
+on:
3
+ workflow_dispatch:
4
+
5
+permissions:
6
+ contents: read
7
8
+jobs:
9
+ demonstrate:
10
+ name: Demonstrate PyPy pip issue
11
+ permissions:
12
13
+ runs-on: windows-latest
14
+ steps:
15
+ - uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
16
+ with:
17
+ python-version: pypy-3.11
18
+ - name: Downgrade pip
19
+ run: |
20
+ python -m pip install "pip==26.1.2"
21
+ - name: Use pip
22
23
+ python -m pip install -U requests
0 commit comments