Update python requirements

#189
This commit is contained in:
Charles Milette 2020-08-04 21:05:29 -04:00
parent 154d035435
commit ed8f7f4eba
No known key found for this signature in database
GPG key ID: 1A5AE81377AD973A
3 changed files with 4 additions and 4 deletions

View file

@ -41,7 +41,7 @@
# Installation
Install Python 3.6 or higher:
Install Python 3.7 or higher:
- [For Mac](https://www.python.org/downloads/mac-osx/)
- For Windows: [desktop](https://www.python.org/downloads/windows/) or [Microsoft Store](https://www.microsoft.com/p/python-38/9mssztt1n39l)
- [For Ubuntu](https://askubuntu.com/a/865569)

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python3.6
#!/usr/bin/env python3.7
"""The main module that brings everything together."""
import os

View file

@ -70,9 +70,9 @@ Supports iTerm2, Terminology, Tilix and ConEmu.""",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6"
"Programming Language :: Python :: 3.7"
],
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=(["psutil"] if sys.platform != "win32" else None)
)