Skip to content
Open
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 @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
include:
- os: macos-13
python-version: "3.12"
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ News
Requirements
============

* `Python 3.9+ <https://www.python.org/downloads/release/python-390/>`_
* `Python 3.10+ <https://www.python.org/downloads/release/python-3100/>`_
* `Pip <https://pip.pypa.io>`_ (installed by default in newer versions of Python)
* `Neuron 7.4+ <http://neuron.yale.edu/>`_ (compiled with Python support)
* `eFEL eFeature Extraction Library <https://github.com/openbraininstitute/eFEL>`_ (automatically installed by pip)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [
description="Blue Brain Python Optimisation Library (bluepyopt)"
readme = "README.rst"
license = {file = "LICENSE.txt"}
requires-python = ">= 3.9"
requires-python = ">= 3.10"
dynamic = ["version"]
dependencies = [
"numpy>=1.6",
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ minversion = 4

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

[testenv]
envdir =
py3{9,10,11,12,}{-unit,-functional,-style,-syntax}: {toxworkdir}/py3
py3{10,11,12,13,}{-unit,-functional,-style,-syntax}: {toxworkdir}/py3
docs: {toxworkdir}/docs
extras = tests
deps =
Expand Down Expand Up @@ -45,7 +45,7 @@ commands =
functional: pytest --cov=bluepyopt {[testenv]coverage_options} bluepyopt/tests -m neuroml

[testenv:docs]
basepython = python3.9
basepython = python3.12
changedir = docs
deps =
sphinx
Expand Down
Loading