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 8909c8c commit 2d00f8cCopy full SHA for 2d00f8c
.github/workflows/tests.yml
@@ -41,11 +41,17 @@ jobs:
41
shell: bash -l {0}
42
run: |
43
conda list
44
- mamba install numpy=${{ matrix.npver }} nose cython wget make pytest flake8 bzip2
+ mamba install numpy=${{ matrix.npver }} nose cython wget make pytest flake8
45
if [ "${{ matrix.pyver }}" == "3.8" ] || [ "${{ matrix.pyver }}" == "3.9" ] || [ "${{ matrix.pyver }}" == "3.10" ]; then
46
mamba install importlib_resources
47
fi
48
49
+ - name: install bzip2 on linux
50
+ shell: bash -l {0}
51
+ if: matrix.os == 'ubuntu-latest'
52
+ run: |
53
+ sudo yum install bzip2-devel
54
+
55
- name: build external cfitsio
56
57
0 commit comments