install build reqs before building editable

This commit is contained in:
Kenneth Bingham 2025-03-04 21:01:51 -05:00
parent 7e2e1144f3
commit cc8252c34e
No known key found for this signature in database
GPG Key ID: 31709281860130B6
3 changed files with 4 additions and 2 deletions

View File

@ -114,9 +114,10 @@ jobs:
set -o xtrace
python -m pip install --upgrade pip
pip install -e "$PWD"
pip install -r requirements.txt
pip install -r test-requirements.txt
pip install -r build-requirements.txt
pip install -e "$PWD"
- name: Test with pytest
shell: bash

View File

@ -1,2 +1,3 @@
build
wheel
versioneer

View File

@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools", "wheel", "versioneer[toml]"]
build-backend = "setuptools.build_meta"