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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ For detailed citation information, please refer to the `CITATION.cff <./CITATION
Requirements
============

* `Python 3.9+ <https://www.python.org/downloads/release/python-380/>`_
* `Python 3.11+ <https://www.python.org/downloads/release/python-311/>`_
* `eFEL eFeature Extraction Library <https://github.com/openbraininstitute/eFEL>`_ (automatically installed by pip)
* `Numpy <http://www.numpy.org>`_ (automatically installed by pip)
* `Scipy <https://www.scipy.org/>`_ (automatically installed by pip)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ authors = [
description="Blue Brain Python E-feature extraction"
readme = "README.rst"
license = {file = "LICENSE.txt"}
requires-python = ">= 3.9"
requires-python = ">= 3.11"
dynamic = ["version"]
dependencies = [
"numpy",
"neo",
"matplotlib",
"efel",
"scipy<1.15",
"scipy>=1.16.1",
"h5py",
"igor2",
]
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@ minversion = 4

[gh-actions]
python =
3.9: py3
3.10: py3
3.11: py3
3.12: py3, docs
3.13: py3

[testenv]
envdir =
py3{9,10,11,12,}{-functional,-notebooks,-style,-syntax}: {toxworkdir}/py3
py3{11,12,13,}{-functional,-notebooks,-style,-syntax}: {toxworkdir}/py3
docs: {toxworkdir}/docs
usedevelop = true
deps =
Expand Down