-
Notifications
You must be signed in to change notification settings - Fork 33
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
CI: drop python 3.9, numpy 1.21 #266
base: main
Are you sure you want to change the base?
Changes from all commits
46913ef
6e1502c
d0ef320
e5da2ca
3587115
3ef81ed
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -5,13 +5,11 @@ jobs: | |||||
runs-on: ubuntu-latest | ||||||
strategy: | ||||||
matrix: | ||||||
python-version: ['3.9', '3.10', '3.11', '3.12'] | ||||||
numpy-version: ['1.21', '1.26', '2.0', 'dev'] | ||||||
python-version: ['3.10', '3.12'] | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 3.12 testing can be dropped from CI? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not if you want to test numpy 1.26 on the most recent python version it supports. |
||||||
numpy-version: ['1.26', 'latest', 'dev'] | ||||||
exclude: | ||||||
- python-version: '3.11' | ||||||
numpy-version: '1.21' | ||||||
- python-version: '3.12' | ||||||
numpy-version: '1.21' | ||||||
- python-version: '3.13' | ||||||
numpy-version: '1.26' | ||||||
fail-fast: true | ||||||
steps: | ||||||
- uses: actions/checkout@v4 | ||||||
|
@@ -23,17 +21,15 @@ jobs: | |||||
python -m pip install --upgrade pip | ||||||
if [ "${{ matrix.numpy-version }}" == "dev" ]; then | ||||||
PIP_EXTRA='numpy --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple' | ||||||
elif [ "${{ matrix.numpy-version }}" == "1.21" ]; then | ||||||
PIP_EXTRA='numpy==1.21.*' | ||||||
else | ||||||
elif [ "${{ matrix.numpy-version }}" == "1.26" ]; then | ||||||
PIP_EXTRA='numpy==1.26.*' | ||||||
fi | ||||||
|
||||||
python -m pip install .[dev] $PIP_EXTRA | ||||||
|
||||||
- name: Run Tests | ||||||
run: | | ||||||
if [[ "${{ matrix.numpy-version }}" == "1.21" || "${{ matrix.numpy-version }}" == "dev" ]]; then | ||||||
if [[ "${{ matrix.numpy-version }}" == "dev" ]]; then | ||||||
PYTEST_EXTRA=(-k "numpy and not jax and not torch and not dask and not sparse") | ||||||
fi | ||||||
pytest -v "${PYTEST_EXTRA[@]}" | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't we just use an
exclude:
directive like in tests.yml below?