Skip to content

Commit 638322f

Browse files
committed
Fix CI workflow to install dependencies from pyproject.toml
- Replace `pip install -r requirements.txt` (which doesn’t exist) with: - `pip install -e .` to pull in sympy and numpy from pyproject.toml - `pip install pytest` so tests can run
1 parent ded56aa commit 638322f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/pentagon-identity.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- uses: actions/setup-python@v4
1818
with: { python-version: "3.x" }
19-
- name: Install deps
20-
run: pip install -r requirements.txt # includes sympy
19+
- name: Install dependencies
20+
run: |
21+
pip install -e .
22+
pip install pytest
2123
- name: Run pentagon identity test
2224
run: pytest tests/test_biedenharn_elliott_identity.py -q

0 commit comments

Comments
 (0)