Skip to content

feat!(v1): python 3.13 release; remove cffi (gcc) dep; update readme; release v1? #703

feat!(v1): python 3.13 release; remove cffi (gcc) dep; update readme; release v1?

feat!(v1): python 3.13 release; remove cffi (gcc) dep; update readme; release v1? #703

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/base.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: |
poetry install
pre-commit run --all-files
make test-pysus