Skip to content

docs(surfinfo): add missing docstring for flat_border #581

docs(surfinfo): add missing docstring for flat_border

docs(surfinfo): add missing docstring for flat_border #581

name: Install from wheel
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
install-from-wheel:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
max-parallel: 5
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v6
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py', '**/pyproject.toml') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y inkscape
pip install --upgrade pip
pip install setuptools build wheel numpy cython
- name: Create the wheel
run: python setup.py bdist_wheel
- name: Install from the wheel
run: |
pip install "$(ls dist/*.whl)[headless]" --no-build-isolation
- name: Test installation of the filestore
run: |
# change directory to avoid conflict with cortex directory
cd ..
python -c 'import cortex; print(cortex.db.filestore)'
python -c 'from cortex.webgl.view import cmapdir; print(cmapdir)'