mirror of
https://github.com/jlu5/PyLink.git
synced 2025-02-24 17:30:51 +01:00
Bump base version to Python 3.7
This commit is contained in:
parent
e6401a19df
commit
8d01eaa5c8
@ -28,7 +28,7 @@ There is also an IRC channel available: `#pylink @ irc.libera.chat`
|
|||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
### Pre-requisites
|
### 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.
|
* 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.
|
If you are a developer and want to help make PyLink more portable, patches are welcome.
|
||||||
|
8
setup.py
8
setup.py
@ -4,8 +4,8 @@ import subprocess
|
|||||||
import sys
|
import sys
|
||||||
from codecs import open
|
from codecs import open
|
||||||
|
|
||||||
if sys.version_info < (3, 4):
|
if sys.version_info < (3, 7):
|
||||||
raise RuntimeError("PyLink requires Python 3.4 or higher.")
|
raise RuntimeError("PyLink requires Python 3.7 or higher.")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
@ -76,10 +76,10 @@ setup(
|
|||||||
'Natural Language :: English',
|
'Natural Language :: English',
|
||||||
|
|
||||||
'Programming Language :: Python :: 3 :: Only',
|
'Programming Language :: Python :: 3 :: Only',
|
||||||
'Programming Language :: Python :: 3.5',
|
|
||||||
'Programming Language :: Python :: 3.6',
|
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7',
|
||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
|
'Programming Language :: Python :: 3.9',
|
||||||
|
'Programming Language :: Python :: 3.10',
|
||||||
],
|
],
|
||||||
|
|
||||||
keywords='IRC services relay',
|
keywords='IRC services relay',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user