Skip to content

chore(deps-dev): bump pillow from 11.0.0 to 12.2.0 #804

chore(deps-dev): bump pillow from 11.0.0 to 12.2.0

chore(deps-dev): bump pillow from 11.0.0 to 12.2.0 #804

Workflow file for this run

name: main
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
shell: bash -l {0}
strategy:
matrix:
python_version: ["3.10", "3.11", "3.12", "3.13"]
concurrency:
group: ci-tests-${{ matrix.python_version }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
environment-file: conda/dev.yaml
channels: conda-forge,nodefaults
activate-environment: pysus
auto-update-conda: true
conda-solver: libmamba
# - name: Run jupyterlab with PySUS
# run: |
# make run-jupyter-pysus
# make test-jupyter-pysus ## takes too long
- name: Linting & Tests
run: |
pip install poetry poetry-plugin-export
poetry config virtualenvs.create false
poetry export --with dev --extras dbc --format requirements.txt --output reqs.txt --without-hashes
pip install -r reqs.txt
pip install -e ".[dbc]"
pre-commit run --all-files
make test-pysus