Skip to content

Commit

Permalink
Require at least 3.8 python #265
Browse files Browse the repository at this point in the history
  • Loading branch information
Michał Bukowski authored and bukson committed Sep 19, 2023
1 parent 0993fd6 commit 63eeebb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Table of Content
Installation
============

Requires python 3.8 at least
```
pip install steampy
```
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from setuptools import setup
import sys

if not sys.version_info[0] == 3 and sys.version_info[1] < 5:
sys.exit('Python < 3.5 is not supported')
if not sys.version_info[0] == 3 and sys.version_info[1] < 8:
sys.exit('Python < 3.8 is not supported')

version = '0.95'

Expand Down

0 comments on commit 63eeebb

Please sign in to comment.