Skip to content

Commit 7ba158a

Browse files
committed
update python and docs
1 parent d759b8b commit 7ba158a

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

doc/source/releases/0.13.4.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ Neo 0.13.4 release notes
44

55
22 October 2024
66

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.
89

910
See all `pull requests`_ included in this release and the `list of closed issues`_.
1011

@@ -13,7 +14,7 @@ Updated dependencies
1314
--------------------
1415

1516
Neo has a limit of NumPy >= 1.22.4, < 2.0.0
16-
Neo now supports Python >= 3.9
17+
Neo now supports Python >= 3.9, <3.13
1718

1819
CI Additions
1920
------------

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.13.4"
44
authors = [{name = "Neo authors and contributors"}]
55
description = "Neo is a package for representing electrophysiology data in Python, together with support for reading a wide range of neurophysiology file formats"
66
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)
88
license = {text = "BSD 3-Clause License"}
99
classifiers = [
1010
"Development Status :: 4 - Beta",
@@ -14,10 +14,10 @@ classifiers = [
1414
"Natural Language :: English",
1515
"Topic :: Scientific/Engineering",
1616
"License :: OSI Approved :: BSD License",
17-
"Programming Language :: Python :: 3.8",
1817
"Programming Language :: Python :: 3.9",
1918
"Programming Language :: Python :: 3.10",
2019
"Programming Language :: Python :: 3.11",
20+
"Programming Language :: Python :: 3.12",
2121
"Programming Language :: Python :: 3 :: Only",
2222
]
2323

@@ -100,7 +100,7 @@ ced = ["sonpy"]
100100
nwb = ["pynwb"]
101101
maxwell = ["h5py"]
102102
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
104104
plexon2 = ["zugbruecke>=0.2; sys_platform!='win32'", "wenv; sys_platform!='win32'"]
105105

106106
all = [

0 commit comments

Comments
 (0)