Skip to content

Commit 329b18f

Browse files
committed
fixed installation of specific version with extra
1 parent 370dd06 commit 329b18f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176
- name: Install from TestPyPI
177177
run: |
178178
python -m pip install --upgrade pip
179-
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "GridDataFormats==${{ needs.build.outputs.version }}[test]"
179+
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ "GridDataFormats[test]==${{ needs.build.outputs.version }}"
180180
181181
- name: Test import
182182
run: |
@@ -216,7 +216,7 @@ jobs:
216216
- name: Install from PyPI
217217
run: |
218218
python -m pip install --upgrade pip
219-
pip install "GridDataFormats==${{ needs.build.outputs.version }}[test]"
219+
pip install "GridDataFormats[test]==${{ needs.build.outputs.version }}"
220220
221221
- name: Test import
222222
run: |

0 commit comments

Comments
 (0)