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

Commit 10079ae

Browse files
authored
Merge branch 'master' into example-np-float
2 parents ee9bd07 + e65e5f7 commit 10079ae

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
with:
2121
fetch-depth: 0
2222

23-
- name: Set up Python 3.7
23+
- name: Set up Python 3.8
2424
uses: actions/setup-python@v2
2525
with:
26-
python-version: 3.7
26+
python-version: 3.8
2727

2828
- name: Build a source tarball and wheel
2929
run: |

.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.7", "3.8", "3.9", "3.10", "3.11"]
15+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1616
include:
1717
- os: macos-latest
1818
python-version: "3.10"

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ News
122122
Requirements
123123
============
124124

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

tox.ini

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ minversion = 4
44

55
[gh-actions]
66
python =
7-
3.6: py3
8-
3.7: py3
97
3.8: py3
108
3.9: py3
119
3.10: py3
@@ -14,8 +12,7 @@ python =
1412

1513
[testenv]
1614
envdir =
17-
py27{-unit,-functional,-style,-syntax}: {toxworkdir}/py27
18-
py3{5,6,7,8,9,10,11,}{-unit,-functional,-style,-syntax}: {toxworkdir}/py3
15+
py3{8,9,10,11,}{-unit,-functional,-style,-syntax}: {toxworkdir}/py3
1916
docs: {toxworkdir}/docs
2017
extras = tests
2118
deps =
@@ -50,7 +47,7 @@ commands =
5047
functional: pytest --cov=bluepyopt {[testenv]coverage_options} bluepyopt/tests -m neuroml
5148

5249
[testenv:docs]
53-
basepython = python3.7
50+
basepython = python3.8
5451
changedir = docs
5552
deps =
5653
sphinx

0 commit comments

Comments
 (0)