Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
fetch-tags: true

- uses: mamba-org/setup-micromamba@7f29b8b80078b1b601dfa018b0f7425c587c63bb #v2.0.7
- uses: mamba-org/setup-micromamba@add3a49764cedee8ee24e82dfde87f5bc2914462 #v2.0.7
with:
environment-name: fitsio-dev
condarc: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-external-cfitsio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ jobs:
remove_haskell: true
rm_cmd: "rmz"

- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
fetch-tags: true

- uses: mamba-org/setup-micromamba@7f29b8b80078b1b601dfa018b0f7425c587c63bb #v2.0.7
- uses: mamba-org/setup-micromamba@add3a49764cedee8ee24e82dfde87f5bc2914462 #v2.0.7
with:
environment-name: fitsio-dev
environment-file: environment.yml
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/tests-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ jobs:
remove_haskell: true
rm_cmd: "rmz"

- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
fetch-tags: true

- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '${{ matrix.pyver }}'

Expand All @@ -54,6 +54,7 @@ jobs:
- name: install bzip2 and other tools on linux
if: contains(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install libbz2-dev wget make curl libcurl4-openssl-dev

- name: build fitsio
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ jobs:
remove_haskell: true
rm_cmd: "rmz"

- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
fetch-tags: true

- uses: mamba-org/setup-micromamba@7f29b8b80078b1b601dfa018b0f7425c587c63bb #v2.0.7
- uses: mamba-org/setup-micromamba@add3a49764cedee8ee24e82dfde87f5bc2914462 #v2.0.7
with:
environment-name: fitsio-dev
environment-file: environment.yml
Expand Down Expand Up @@ -99,7 +99,8 @@ jobs:
- name: install bzip2 and curl on linux
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get install libbz2-dev curl libcurl4-openssl-dev
sudo apt-get update
sudo apt-get install libbz2-dev curl libcurl4-openssl-dev

- name: test install sdist .gz with no unit tests
run: |
Expand Down
38 changes: 19 additions & 19 deletions .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,18 @@ jobs:
remove_haskell: true
rm_cmd: "rmz"

- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.ref || '' }}
fetch-depth: 0
fetch-tags: true

- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '${{ env.PYVER }}'

- name: build wheels
uses: pypa/cibuildwheel@63fd63b352a9a8bdcc24791c9dbee952ee9a8abc # v3.3.0
uses: pypa/cibuildwheel@298ed2fb2c105540f5ed055e8a6ad78d82dd3a7e # v3.3.1
env:
CIBW_BUILD: "*manylinux*"
CIBW_ARCHS: auto64
Expand All @@ -68,7 +68,7 @@ jobs:
pip install ./wheelhouse/*cp${pystr}*.whl
pytest --pyargs fitsio

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: whl-linux
path: ./wheelhouse/*.whl
Expand All @@ -85,18 +85,18 @@ jobs:
remove_haskell: true
rm_cmd: "rmz"

- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.ref || '' }}
fetch-depth: 0
fetch-tags: true

- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '${{ env.PYVER }}'

- name: build wheels
uses: pypa/cibuildwheel@63fd63b352a9a8bdcc24791c9dbee952ee9a8abc # v3.3.0
uses: pypa/cibuildwheel@298ed2fb2c105540f5ed055e8a6ad78d82dd3a7e # v3.3.1
env:
CIBW_BUILD: "*musllinux*"
CIBW_ARCHS: auto64
Expand All @@ -122,7 +122,7 @@ jobs:
pytest --pyargs fitsio
deactivate

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: whl-musl
path: ./wheelhouse/*.whl
Expand All @@ -131,18 +131,18 @@ jobs:
name: osx-intel
runs-on: macos-15-intel
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.ref || '' }}
fetch-depth: 0
fetch-tags: true

- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '${{ env.PYVER }}'

- name: build wheels
uses: pypa/cibuildwheel@63fd63b352a9a8bdcc24791c9dbee952ee9a8abc # v3.3.0
uses: pypa/cibuildwheel@298ed2fb2c105540f5ed055e8a6ad78d82dd3a7e # v3.3.1
env:
CIBW_BUILD: "*macosx*"
CIBW_ARCHS: auto64
Expand All @@ -160,7 +160,7 @@ jobs:
pip install ./wheelhouse/*cp${pystr}*.whl
pytest --pyargs fitsio

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: whl-macos
path: ./wheelhouse/*.whl
Expand All @@ -169,18 +169,18 @@ jobs:
name: osx-arm
runs-on: macos-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.ref || '' }}
fetch-depth: 0
fetch-tags: true

- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '${{ env.PYVER }}'

- name: build wheels
uses: pypa/cibuildwheel@63fd63b352a9a8bdcc24791c9dbee952ee9a8abc # v3.3.0
uses: pypa/cibuildwheel@298ed2fb2c105540f5ed055e8a6ad78d82dd3a7e # v3.3.1
env:
CIBW_BUILD: "*macosx*"
CIBW_ARCHS: arm64
Expand All @@ -198,7 +198,7 @@ jobs:
pip install ./wheelhouse/*cp${pystr}*.whl
pytest --pyargs fitsio

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: whl-arm
path: ./wheelhouse/*.whl
Expand All @@ -217,13 +217,13 @@ jobs:
remove_haskell: true
rm_cmd: "rmz"

- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.ref || '' }}
fetch-depth: 0
fetch-tags: true

- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '${{ env.PYVER }}'

Expand All @@ -233,7 +233,7 @@ jobs:
pip install -U build

- name: download wheels
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
with:
path: ./wheels
pattern: whl-*
Expand Down
Loading