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

Commit 831c86f

Browse files
authored
Merge pull request #376 from BlueBrain/droppy27
Dropping python 2.7 support
2 parents a1531e2 + 14adc7a commit 831c86f

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: [2.7, 3.6, 3.7, 3.8, 3.9]
19+
python-version: [3.6, 3.7, 3.8, 3.9]
2020

2121
steps:
2222
- uses: actions/checkout@v2

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ We are providing support using a chat channel on `Gitter <https://gitter.im/Blue
103103

104104
News
105105
====
106+
- 2021/08/30: BluePyOpt dropped Python 2.7 support.
106107
- 2017/01/04: BluePyOpt is now considered compatible with Python 3.6+.
107108
- 2016/11/10: BluePyOpt now supports NEURON point processes. This means we can fit parameters of Adex/GIF/Izhikevich models, and also synapse models.
108109
- 2016/06/14: Started a wiki: https://github.com/BlueBrain/BluePyOpt/wiki
@@ -117,7 +118,7 @@ Requirements
117118
* `Python 2.7+ <https://www.python.org/download/releases/2.7/>`_ or `Python 3.6+ <https://www.python.org/downloads/release/python-360/>`_
118119
* `Pip <https://pip.pypa.io>`_ (installed by default in newer versions of Python)
119120
* `Neuron 7.4+ <http://neuron.yale.edu/>`_ (compiled with Python support)
120-
* `eFEL eFeature Extraction Library` <https://github.com/BlueBrain/eFEL>`_ (automatically installed by pip)
121+
* `eFEL eFeature Extraction Library <https://github.com/BlueBrain/eFEL>`_ (automatically installed by pip)
121122
* `Numpy <http://www.numpy.org>`_ (automatically installed by pip)
122123
* `Pandas <http://pandas.pydata.org/>`_ (automatically installed by pip)
123124
* The instruction below are written assuming you have access to a command shell on Linux / UNIX / MacOSX / Cygwin

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,7 @@
7373
'Environment :: Console',
7474
'License :: OSI Approved :: GNU Lesser General Public '
7575
'License v3 (LGPLv3)',
76-
'Programming Language :: Python :: 2.7',
77-
'Programming Language :: Python :: 3.6',
76+
'Programming Language :: Python :: 3 :: Only',
7877
'Operating System :: POSIX',
7978
'Topic :: Scientific/Engineering',
8079
'Topic :: Utilities'],

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[tox]
2-
envlist = py{27,3}-{unit,functional,style}
2+
envlist = py{3}-{unit,functional,style}
33

44
[gh-actions]
55
python =
6-
2.7: py27
76
3.6: py3
87
3.7: py3
98
3.8: py3

0 commit comments

Comments
 (0)