Skip to content

Commit 4769167

Browse files
committed
Initial commit
0 parents  commit 4769167

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/demo.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
contents: read
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+
run: |
23+
python -m pip install -U requests

0 commit comments

Comments
 (0)