You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/releases/0.13.4.rst
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,8 @@ Neo 0.13.4 release notes
4
4
5
5
22 October 2024
6
6
7
-
This release of Neo contains bug fixes, a new IO for :code:`NeuroNexus`, drop of Python 3.8/NumPy 1.22, still with a focus on the planned 1.0 release.
7
+
This release of Neo contains bug fixes, a new IO for :code:`NeuroNexus`, drop of Python 3.8/NumPy 1.20 & 1.21, still with a focus on the planned 1.0 release.
8
+
This point release will be the last release to not support Python 3.13 and NumPy > 2.0.
8
9
9
10
See all `pull requests`_ included in this release and the `list of closed issues`_.
Copy file name to clipboardExpand all lines: pyproject.toml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ version = "0.13.4"
4
4
authors = [{name = "Neo authors and contributors"}]
5
5
description = "Neo is a package for representing electrophysiology data in Python, together with support for reading a wide range of neurophysiology file formats"
6
6
readme = "README.rst"
7
-
requires-python = ">=3.9"
7
+
requires-python = ">=3.9,<3.13"# 3.13 will require NumPy > 2.0 (Windows issue in CI)
8
8
license = {text = "BSD 3-Clause License"}
9
9
classifiers = [
10
10
"Development Status :: 4 - Beta",
@@ -14,10 +14,10 @@ classifiers = [
14
14
"Natural Language :: English",
15
15
"Topic :: Scientific/Engineering",
16
16
"License :: OSI Approved :: BSD License",
17
-
"Programming Language :: Python :: 3.8",
18
17
"Programming Language :: Python :: 3.9",
19
18
"Programming Language :: Python :: 3.10",
20
19
"Programming Language :: Python :: 3.11",
20
+
"Programming Language :: Python :: 3.12",
21
21
"Programming Language :: Python :: 3 :: Only",
22
22
]
23
23
@@ -100,7 +100,7 @@ ced = ["sonpy"]
100
100
nwb = ["pynwb"]
101
101
maxwell = ["h5py"]
102
102
biocam = ["h5py"]
103
-
med = ["dhn_med_py>=1.0.0"]
103
+
med = ["dhn_med_py>=1.0.0,<2.0"] # ci failing with 2.0 test future version when stable
0 commit comments