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
24 changes: 6 additions & 18 deletions .github/workflows/core-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,34 +25,22 @@ jobs:
fail-fast: true
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
numpy-version: ['1.24.4', '1.25.1', '1.26.4', '2.0.2','2.1.3', '2.2.6', '2.3.3']
# 1.24: 3.11, 1.25: 3.11, 1.26: 3.12
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
numpy-version: ['1.25.2', '1.26.4', '2.0.2','2.1.3', '2.2.6', '2.3.3']
# 1.25: 3.11, 1.26: 3.12
exclude:
- python-version: '3.9'
numpy-version: '2.1.3'
- python-version: '3.9'
numpy-version: '2.2.6'
- python-version: '3.9'
numpy-version: '2.3.3'
- python-version: '3.10'
numpy-version: '2.3.3'
- python-version: '3.12'
numpy-version: '1.24.4'
- python-version: '3.12'
numpy-version: '1.25.1'
- python-version: '3.13'
numpy-version: '1.24.4'
numpy-version: '1.25.2'
- python-version: '3.13'
numpy-version: '1.25.1'
numpy-version: '1.25.2'
- python-version: '3.13'
numpy-version: '1.26.4'
- python-version: '3.13'
numpy-version: '2.0.2'
- python-version: '3.14'
numpy-version: '1.24.4'
- python-version: '3.14'
numpy-version: '1.25.1'
numpy-version: '1.25.2'
- python-version: '3.14'
numpy-version: '1.26.4'
- python-version: '3.14'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/io-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ['3.9', '3.14']
python-version: ['3.10', '3.14']
numpy-version: ['1.26', '2.3.3']
exclude:
- python-version: '3.9'
- python-version: '3.10'
numpy-version: '2.3.3'
- python-version: '3.14'
numpy-version: '1.26'
Expand Down
1 change: 1 addition & 0 deletions neo/core/analogsignal.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* :meth:`__array_finalize__` is called for all new objects, including those
created by slicing. This is where attributes are copied over from
the old object.

"""

import logging
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ classifiers = [

dependencies = [
"packaging",
"numpy>=1.24.4",
"quantities>=0.16.1"
"numpy>=1.25.2",
"quantities>=0.16.4"
]

[project.urls]
Expand Down
Loading