Skip to content

Commit

Permalink
Deprecate Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
anilbey committed Nov 29, 2022
1 parent 2c08dac commit 1410f1e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python 3.6
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: 3.7
- name: Build a source tarball and wheel
run: |
pip install wheel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ This software is citable using a [DOI generated by Zenodo](https://zenodo.org/re
Requirements
============

* [Python 3.6+](https://www.python.org/downloads/release/python-360/)
* [Python 3.7+](https://www.python.org/downloads/release/python-360/)
* [eFEL eFeature Extraction Library](https://github.com/BlueBrain/eFEL) (automatically installed by pip)
* [Numpy](http://www.numpy.org) (automatically installed by pip)
* [Scipy](https://www.scipy.org/) (automatically installed by pip)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"format that can then be used by BluePyOpt for electrical model building "
"purposes.",
packages=setuptools.find_packages(),
python_requires=">=3.7",
include_package_data=True,
author="BlueBrain Project, EPFL",
license="LGPLv3",
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ envlist = py3-{functional,style}

[gh-actions]
python =
3.6: py3
3.7: py3
3.8: py3
3.9: py3
3.10: py3

[testenv]
envdir =
py3{5,6,7,8,9,10,}{-functional,-notebooks,-style,-syntax,-docs,-upload_docs}: {toxworkdir}/py3
py3{7,8,9,10,}{-functional,-notebooks,-style,-syntax,-docs,-upload_docs}: {toxworkdir}/py3
usedevelop = true
deps =
coverage
Expand Down

0 comments on commit 1410f1e

Please sign in to comment.