We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19bd4e0 commit c3cf955Copy full SHA for c3cf955
.github/workflows/main.yml
@@ -37,6 +37,8 @@ jobs:
37
38
steps:
39
- uses: actions/checkout@v4
40
+ - name: Install uv
41
+ uses: astral-sh/setup-uv@v5
42
43
- name: Set up Python ${{ matrix.python-version }}
44
uses: actions/setup-python@v5
@@ -47,9 +49,9 @@ jobs:
47
49
48
50
- name: Install project dependencies
51
run: |
- pip install --upgrade pip setuptools
- pip install codecov '.[tests]' '${{ matrix.urllib3-requirement }}'
52
- pip check
+ uv pip install --system --upgrade pip setuptools
53
+ uv pip install --system codecov '.[tests]' '${{ matrix.urllib3-requirement }}'
54
+ uv pip check
55
56
- name: Allow creation of user namespaces (e.g. to the unshare command)
57
0 commit comments