Increase minimum python to 3.9 #1016
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: caput-ci-build | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
lint-code: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.11" | |
- name: Install apt dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libopenmpi-dev openmpi-bin libhdf5-serial-dev | |
- name: Install pip dependencies | |
run: | | |
pip install ruff pytest black mpi4py pyinstrument psutil pytest-lazy-fixtures | |
pip install -r requirements.txt | |
pip install -e .[compression] | |
- name: Run ruff (flake8 and pydocstyle) | |
run: ruff check . | |
- name: Check code with black | |
run: black --check . | |
run-tests: | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.11"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install apt dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libopenmpi-dev openmpi-bin libhdf5-serial-dev | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install pip dependencies | |
run: | | |
pip install h5py | |
pip install -r requirements.txt | |
pip install zarr==2.11.3 | |
pip install mpi4py numcodecs>=0.7.3 bitshuffle | |
pip install pytest pytest-lazy-fixtures | |
pip install -e . | |
- name: Run serial tests | |
run: pytest --doctest-modules caput/ | |
- name: Run parallel tests | |
run: | | |
mpirun --oversubscribe -np 4 pytest caput/tests/test_memh5_parallel.py | |
mpirun --oversubscribe -np 4 pytest caput/tests/test_mpiarray.py | |
mpirun -np 1 pytest caput/tests/test_selection_parallel.py | |
mpirun --oversubscribe -np 2 pytest caput/tests/test_selection_parallel.py | |
mpirun --oversubscribe -np 4 pytest caput/tests/test_selection_parallel.py | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.11" | |
- name: Install apt dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libhdf5-serial-dev | |
- name: Install pip dependencies | |
run: | | |
pip install -r requirements.txt | |
pip install -r doc/requirements.txt | |
pip install -e . | |
- name: Build sphinx docs | |
run: sphinx-build -W -b html doc/ doc/_build/html |