We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 05cb832 + 9c1e6d6 commit 5e0f4f8Copy full SHA for 5e0f4f8
.github/workflows/tests.yml
@@ -46,3 +46,16 @@ jobs:
46
pip install .
47
- name: Run tests
48
run: pytest
49
+ pytest-editable:
50
+ runs-on: ubuntu-latest
51
+ steps:
52
+ - name: Checkout
53
+ uses: actions/checkout@v3
54
+ - name: Install
55
+ run: |
56
+ sudo apt-get install sox
57
+ python -m pip install --upgrade pip
58
+ pip install -r requirements.dev.txt
59
+ pip install -e .
60
+ - name: Run tests
61
+ run: pytest
pyproject.toml
@@ -1,7 +1,7 @@
1
[build-system]
2
requires = [
3
"wheel",
4
- "setuptools>=45",
+ "setuptools>=45,<64",
5
"scikit-build~=0.15",
6
"Cython",
7
"cmake",
0 commit comments