Skip to content

Commit 6cc73f5

Browse files
committed
Support numpy 2.0
1 parent fadc9b7 commit 6cc73f5

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/all-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
python-version: ["3.9", "3.13"] # Lower and higher versions we support
28+
python-version: ["3.9", "3.12"] # Lower and higher versions we support
2929
os: [macos-latest, windows-latest, ubuntu-latest]
3030
steps:
3131
- uses: actions/checkout@v4

.github/workflows/full-test-with-codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v4
2424
- uses: actions/setup-python@v5
2525
with:
26-
python-version: '3.10'
26+
python-version: '3.12'
2727
- name: Get ephy_testing_data current head hash
2828
# the key depends on the last comit repo https://gin.g-node.org/NeuralEnsemble/ephy_testing_data.git
2929
id: vars

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = [
77
]
88
description = "Python toolkit for analysis, visualization, and comparison of spike sorting output"
99
readme = "README.md"
10-
requires-python = ">=3.9,<3.14" # Only numpy 2.1 supported on python 3.13 for windows. We need to wait for fix on neo
10+
requires-python = ">=3.9,<3.13"
1111
classifiers = [
1212
"Programming Language :: Python :: 3 :: Only",
1313
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)