Skip to content

Commit

Permalink
Merge pull request #355 from cmusphinx/353-editable-install
Browse files Browse the repository at this point in the history
Require specific setuptools version to fix editable install (fixes: #353)
  • Loading branch information
dhdaines committed Jul 20, 2023
2 parents 05cb832 + 9c1e6d6 commit 5e0f4f8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,16 @@ jobs:
pip install .
- name: Run tests
run: pytest
pytest-editable:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
run: |
sudo apt-get install sox
python -m pip install --upgrade pip
pip install -r requirements.dev.txt
pip install -e .
- name: Run tests
run: pytest
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
requires = [
"wheel",
"setuptools>=45",
"setuptools>=45,<64",
"scikit-build~=0.15",
"Cython",
"cmake",
Expand Down

0 comments on commit 5e0f4f8

Please sign in to comment.