Skip to content

Commit

Permalink
Merge pull request #59 from softwareunderground/setup
Browse files Browse the repository at this point in the history
update setup.py to need python >= 3.8
  • Loading branch information
Japhiolite authored May 17, 2022
2 parents 97021f0 + 738e436 commit fb5e416
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
from os import path
from setuptools import setup, find_packages

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

this_directory = path.abspath(path.dirname(__file__))
Expand Down

0 comments on commit fb5e416

Please sign in to comment.