From ed8f7f4ebab6794e96398865f0f69df8f25048d0 Mon Sep 17 00:00:00 2001 From: Charles Milette Date: Tue, 4 Aug 2020 21:05:29 -0400 Subject: [PATCH] Update python requirements #189 --- README.md | 2 +- pokemonterminal/main.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index bbcdb36..f8da651 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/pokemonterminal/main.py b/pokemonterminal/main.py index ca720e9..1399c60 100644 --- a/pokemonterminal/main.py +++ b/pokemonterminal/main.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3.6 +#!/usr/bin/env python3.7 """The main module that brings everything together.""" import os diff --git a/setup.py b/setup.py index d3a1ca1..f238e35 100755 --- a/setup.py +++ b/setup.py @@ -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) )