Skip to content

Commit 3f617a3

Browse files
authored
Use dependency groups with pip 25.1 (#13512)
1 parent 586a6dc commit 3f617a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
- name: Install dependencies
104104
run: |
105105
python -m pip install --upgrade pip
106-
python -m pip install .[test]
106+
python -m pip install . --group test
107107
- name: Install Docutils ${{ matrix.docutils }}
108108
run: python -m pip install --upgrade "docutils~=${{ matrix.docutils }}.0"
109109
- name: Test with pytest
@@ -137,7 +137,7 @@ jobs:
137137
- name: Install dependencies
138138
run: |
139139
python -m pip install --upgrade pip
140-
python -m pip install .[test]
140+
python -m pip install . --group test
141141
- name: Test with pytest
142142
run: python -m pytest -n logical --dist=worksteal -vv --durations 25
143143
env:
@@ -169,7 +169,7 @@ jobs:
169169
- name: Install dependencies
170170
run: |
171171
python -m pip install --upgrade pip
172-
python -m pip install .[test]
172+
python -m pip install . --group test
173173
- name: Test with pytest
174174
run: python -m pytest -n logical --dist=worksteal -vv --durations 25
175175
env:

0 commit comments

Comments
 (0)