Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increment oldest scipy version because 1.11.0 is yanked #336

Merged
merged 1 commit into from
Jun 15, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
if: ${{ matrix.python-version == '3.9'}}
# Ensure changes to these dependencies are reflected
# in pyproject.toml and docs/install.rst
run: pip install numpy==1.22 scipy==1.11 attrs==21.3.0
run: pip install numpy==1.22 scipy==1.11.1 attrs==21.3.0
- name: Install development version
run: pip install -e .[dev]
# If some tests are slow against expectations, pytest will abort due to timeout.
Expand Down
2 changes: 1 addition & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ In addition, IOData has the following dependencies:
in pyproject.toml and .github/workflows/pytest.yaml

- numpy >= 1.22: https://numpy.org/
- scipy >= 1.11: https://scipy.org/
- scipy >= 1.11.1: https://scipy.org/
tovrstra marked this conversation as resolved.
Show resolved Hide resolved
- attrs >= 21.3.0: https://www.attrs.org/en/stable/index.html

Normally, you don't need to install these dependencies manually. They will be
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies = [
# Ensure changes to these dependencies are reflected
# in .github/workflows/pytest.yaml and docs/install.rst
"numpy>=1.22",
"scipy>=1.11",
"scipy>=1.11.1",
"attrs>=21.3.0",
]
dynamic = ["version"]
Expand Down