Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
Updated the python version to >=3.9
  • Loading branch information
joda9 authored Jul 15, 2024
1 parent 9b7f53c commit fe01754
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 @@ -4,9 +4,9 @@

from setuptools import find_packages, setup

if sys.version_info[:2] < (3, 8):
if sys.version_info[:2] < (3, 9):
error = (
"eDisGo requires Python 3.8 or later (%d.%d detected)." % sys.version_info[:2]
"eDisGo requires Python 3.9 or later (%d.%d detected)." % sys.version_info[:2]
)
sys.stderr.write(error + "\n")
sys.exit(1)
Expand Down

0 comments on commit fe01754

Please sign in to comment.