From 380357b41c3fa64cdcb274c77b33832ea15c2381 Mon Sep 17 00:00:00 2001 From: mayeut Date: Sat, 22 Apr 2023 13:03:21 +0200 Subject: [PATCH] Drop Python 3.5 support Signed-off-by: mayeut --- README.rst | 2 +- docs/index.rst | 4 ++-- psutil/__init__.py | 2 +- scripts/internal/print_announce.py | 2 +- setup.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index 14975bcfa..7c7408a59 100644 --- a/README.rst +++ b/README.rst @@ -98,7 +98,7 @@ psutil currently supports the following platforms: - **Sun Solaris** - **AIX** -Supported Python versions are **2.7**, **3.5+** and +Supported Python versions are **2.7**, **3.6+** and `PyPy `__. Funding diff --git a/docs/index.rst b/docs/index.rst index 84e089c60..8a6c4ed70 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -38,7 +38,7 @@ psutil currently supports the following platforms: - **Sun Solaris** - **AIX** -Supported Python versions are **2.7** and **3.5+**. +Supported Python versions are **2.7** and **3.6+**. `PyPy `__ is also known to work. The psutil documentation you're reading is distributed as a single HTML page. @@ -2632,7 +2632,7 @@ Platforms support history * psutil 0.1.1 (2009-03): **FreeBSD** * psutil 0.1.0 (2009-01): **Linux, Windows, macOS** -Supported Python versions are 2.7, 3.5+ and PyPy3. +Supported Python versions are 2.7, 3.6+ and PyPy3. Timeline ======== diff --git a/psutil/__init__.py b/psutil/__init__.py index b83e81955..71c9e6fe2 100644 --- a/psutil/__init__.py +++ b/psutil/__init__.py @@ -17,7 +17,7 @@ - Sun Solaris - AIX -Works with Python versions 2.7 and 3.5+. +Works with Python versions 2.7 and 3.6+. """ from __future__ import division diff --git a/scripts/internal/print_announce.py b/scripts/internal/print_announce.py index f33150f6d..33fca4220 100755 --- a/scripts/internal/print_announce.py +++ b/scripts/internal/print_announce.py @@ -47,7 +47,7 @@ nice, ionice, iostat, iotop, uptime, pidof, tty, taskset, pmap. It \ currently supports Linux, Windows, macOS, Sun Solaris, FreeBSD, OpenBSD, \ NetBSD and AIX, both 32-bit and 64-bit architectures. Supported Python \ -versions are 2.7 and 3.5+. PyPy is also known to work. +versions are 2.7 and 3.6+. PyPy is also known to work. What's new ========== diff --git a/setup.py b/setup.py index ce9afc734..35467e131 100755 --- a/setup.py +++ b/setup.py @@ -445,7 +445,7 @@ def main(): if setuptools is not None: kwargs.update( python_requires=( - ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"), + ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"), extras_require=extras_require, zip_safe=False, )