diff --git a/README.md b/README.md index 4f6f9a9..ddeeecb 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ There is also an IRC channel available: `#pylink @ irc.libera.chat` ## Installation ### Pre-requisites -* CPython 3.5 or above (other interpreters are untested and unsupported) +* Python 3.7 or above - prefer the newest Python 3.x when available * A Unix-like operating system: PyLink is actively developed on Linux only, so we cannot guarantee that things will work properly on other systems. If you are a developer and want to help make PyLink more portable, patches are welcome. diff --git a/setup.py b/setup.py index 16ca8bc..0c530ab 100644 --- a/setup.py +++ b/setup.py @@ -4,8 +4,8 @@ import subprocess import sys from codecs import open -if sys.version_info < (3, 4): - raise RuntimeError("PyLink requires Python 3.4 or higher.") +if sys.version_info < (3, 7): + raise RuntimeError("PyLink requires Python 3.7 or higher.") try: from setuptools import setup, find_packages @@ -76,10 +76,10 @@ setup( 'Natural Language :: English', 'Programming Language :: Python :: 3 :: Only', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', ], keywords='IRC services relay',