Skip to content

Commit fb5e416

Browse files
authored
Merge pull request #59 from softwareunderground/setup
update setup.py to need python >= 3.8
2 parents 97021f0 + 738e436 commit fb5e416

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
from os import path
77
from setuptools import setup, find_packages
88

9-
if not sys.version_info[:2] >= (3, 7):
10-
sys.exit(f"subsurface is only meant for Python 3.7 and up.\n"
9+
if not sys.version_info[:2] >= (3, 8):
10+
sys.exit(f"subsurface is only meant for Python 3.8 and up.\n"
1111
f"Current version: {sys.version_info[0]}.{sys.version_info[1]}.")
1212

1313
this_directory = path.abspath(path.dirname(__file__))

0 commit comments

Comments
 (0)