We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4fa1db commit 027a754Copy full SHA for 027a754
.github/workflows/pytest-builds.yml
@@ -31,15 +31,15 @@ jobs:
31
curl https://sh.rustup.rs -sSf | sh -s -- -y
32
33
- name: Install dependencies (!= 3.14)
34
- if: ${{ matrix.python-version }} != '3.14'
+ if: ${{ matrix.python-version != '3.14' }}
35
run: |
36
pip install --upgrade pip
37
pip install setuptools-rust pytest pydicom coverage pytest-cov
38
pip install git+https://github.com/pydicom/pylibjpeg-data
39
pip install -e .
40
41
- name: Install dependencies (== 3.14)
42
- if: ${{ matrix.python-version }} == '3.14'
+ if: ${{ matrix.python-version == '3.14' }}
43
44
45
pip install setuptools-rust pytest coverage pytest-cov
0 commit comments