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

Commit c0c265c

Browse files
committed
require python>3.8 in setup.py
1 parent 05582c2 commit c0c265c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
"""
2222

2323
import setuptools
24+
import sys
25+
2426
import versioneer
2527

2628

@@ -40,6 +42,9 @@
4042
'arbor>=0.7',
4143
]
4244

45+
if sys.version_info < (3, 8):
46+
sys.exit("Python version >= 3.8 is required.")
47+
4348
setuptools.setup(
4449
name="bluepyopt",
4550
version=versioneer.get_version(),

0 commit comments

Comments
 (0)