Skip to content

Bump pympipool from 0.7.5 to 0.7.9 #537

Bump pympipool from 0.7.5 to 0.7.9

Bump pympipool from 0.7.5 to 0.7.9 #537

Workflow file for this run

# This workflow is used to test, if the installation of the pypi package works
name: Pip check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Mambaforge
uses: conda-incubator/setup-miniconda@v2
with:
python-version: '3.11'
miniforge-variant: Mambaforge
channels: conda-forge
channel-priority: strict
activate-environment: my-env
environment-file: .ci_support/environment.yml
use-mamba: true
- name: Pip check
shell: bash -l {0}
run: |
pip install versioneer[toml]==0.29
pip install . --no-deps --no-build-isolation
pip check