Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
# Pinned rather than "3.x" for the same reason as pytest.yml: this
# job also runs `pipenv install --dev` against Pipfile.lock.
python-version: "3.13"

- name: Install dependencies
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
# Pinned rather than "3.x": Pipfile.lock pins scipy==1.15.3, which
# publishes wheels only up to cp313. On a newer interpreter pip falls
# back to the sdist, which needs OpenBLAS and fails on ubuntu-latest.
python-version: "3.13"
- name: Install dependencies
run: |
make setup-dev
Expand Down
Loading