Skip to content

Update scvi/external/sysvi/_base_components.py #9

Update scvi/external/sysvi/_base_components.py

Update scvi/external/sysvi/_base_components.py #9

Workflow file for this run

name: Build
on:
push:
branches: [main, 1.1.x, 1.2.x]
pull_request:
branches: [main, 1.1.x, 1.2.x]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
cache-dependency-path: "**/pyproject.toml"
- name: Install build dependencies
run: python -m pip install --upgrade pip wheel twine build
- name: Build package
run: python -m build
- name: Check package
run: twine check --strict dist/*.whl