Skip to content

build: update setup.py to remove deprecated distutils import #2400

build: update setup.py to remove deprecated distutils import

build: update setup.py to remove deprecated distutils import #2400

Workflow file for this run

name: Linkcheck
on:
push:
branches: ['**']
pull_request:
branches: ['**']
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.11]
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: test
python-version: ${{ matrix.python-version }}
- name: Install dependencies
shell: bash -el {0}
run: |
python -m pip install --upgrade pip
pip install numpy matplotlib scipy NEURON
pip install '.[gui, docs]'
- name: Linkcheck
shell: bash -el {0}
run: |
make -C doc linkcheck