Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit 68f315b

Browse files
author
Jaquier Aurélien Tristan
committed
drop support for python 3.8
1 parent c1befc6 commit 68f315b

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest]
15-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
15+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1616
include:
1717
- os: macos-12
1818
python-version: "3.10"

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ News
8585
Requirements
8686
============
8787

88-
* `Python 3.8+ <https://www.python.org/downloads/release/python-380/>`_
88+
* `Python 3.9+ <https://www.python.org/downloads/release/python-390/>`_
8989
* `Pip <https://pip.pypa.io>`_ (installed by default in newer versions of Python)
9090
* `Neuron 7.4+ <http://neuron.yale.edu/>`_ (compiled with Python support)
9191
* `eFEL eFeature Extraction Library <https://github.com/BlueBrain/eFEL>`_ (automatically installed by pip)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
]
3838

3939
EXTRA_ARBOR = [
40-
'arbor>=0.7',
40+
'arbor>=0.10',
4141
]
4242

4343
setuptools.setup(

tox.ini

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@ minversion = 4
44

55
[gh-actions]
66
python =
7-
3.8: py3
87
3.9: py3
98
3.10: py3
109
3.11: py3
1110
3.12: py3
1211

1312
[testenv]
1413
envdir =
15-
py3{8,9,10,11,}{-unit,-functional,-style,-syntax}: {toxworkdir}/py3
14+
py3{9,10,11,12,}{-unit,-functional,-style,-syntax}: {toxworkdir}/py3
1615
docs: {toxworkdir}/docs
1716
extras = tests
1817
deps =
@@ -46,7 +45,7 @@ commands =
4645
functional: pytest --cov=bluepyopt {[testenv]coverage_options} bluepyopt/tests -m neuroml
4746

4847
[testenv:docs]
49-
basepython = python3.8
48+
basepython = python3.9
5049
changedir = docs
5150
deps =
5251
sphinx

0 commit comments

Comments
 (0)