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

Commit bced1fd

Browse files
committed
Dropping python 2.7 support
1 parent a1531e2 commit bced1fd

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
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: 1 addition & 0 deletions
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

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)