1313 strategy :
1414 fail-fast : false
1515 matrix :
16- python-version : [3.7, 3.8, 3.9]
16+ python-version : [3.6, 3. 7, 3.8, 3.9]
1717 arch : ['x64', 'x86']
1818
1919 steps :
2929
3030 - name : Install package and dependencies
3131 run : |
32+ python --version
3233 python -m pip install -U pip
3334 python -m pip install pytest cython numpy
3435 python -m pip install . -v
4041
4142 - name : Install pydicom release and rerun pytest
4243 run : |
43- pip install pydicom
44+ pip install pydicom pylibjpeg
45+ pip uninstall -y pylibjpeg-openjpeg
4446 pytest
4547
4648 osx :
4951 strategy :
5052 fail-fast : false
5153 matrix :
52- python-version : [3.7, 3.8, 3.9]
54+ python-version : [3.6, 3. 7, 3.8, 3.9]
5355
5456 steps :
5557 - uses : actions/checkout@v2
6365
6466 - name : Install package and dependencies
6567 run : |
68+ python --version
6669 python -m pip install -U pip
70+ python -m pip install cython numpy
6771 python -m pip install . -v
6872 python -m pip install pytest
6973 python -m pip install git+https://github.com/pydicom/pylibjpeg-data
7478
7579 - name : Install pydicom release and rerun pytest
7680 run : |
77- pip install pydicom
81+ pip install pydicom pylibjpeg
82+ pip uninstall -y pylibjpeg-openjpeg
7883 pytest
7984
8085 ubuntu :
8388 strategy :
8489 fail-fast : false
8590 matrix :
86- python-version : [3.7, 3.8, 3.9]
91+ python-version : [3.6, 3. 7, 3.8, 3.9]
8792
8893 steps :
8994 - uses : actions/checkout@v2
97102
98103 - name : Install package and dependencies
99104 run : |
105+ python --version
100106 python -m pip install -U pip
107+ python -m pip install cython numpy
101108 python -m pip install .
102109 python -m pip install pytest coverage pytest-cov
103110 python -m pip install git+https://github.com/pydicom/pylibjpeg-data
@@ -108,7 +115,8 @@ jobs:
108115
109116 - name : Install pydicom release and rerun pytest
110117 run : |
111- pip install pydicom
118+ pip install pydicom pylibjpeg
119+ pip uninstall -y pylibjpeg-openjpeg
112120 pytest --cov=libjpeg --cov-append libjpeg/tests
113121
114122 - name : Switch to pydicom dev and rerun pytest
0 commit comments