Skip to content

Commit

Permalink
drop support for python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaquier Aurélien Tristan committed Aug 20, 2024
1 parent c1befc6 commit 68f315b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
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.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
include:
- os: macos-12
python-version: "3.10"
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.8+ <https://www.python.org/downloads/release/python-380/>`_
* `Python 3.9+ <https://www.python.org/downloads/release/python-390/>`_
* `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/BlueBrain/eFEL>`_ (automatically installed by pip)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
]

EXTRA_ARBOR = [
'arbor>=0.7',
'arbor>=0.10',
]

setuptools.setup(
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@ minversion = 4

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

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

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

0 comments on commit 68f315b

Please sign in to comment.