From 6fa3d7772bdea71ce7f430259d513fc0fcb5707d Mon Sep 17 00:00:00 2001 From: Mat Kelly Date: Thu, 24 Oct 2024 14:53:47 -0400 Subject: [PATCH] Update requirements to Py 3.9 --- README.md | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a3edf11a..adcdf205 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Another important feature of archival replays is the inclusion of an archival ba ## Installing -InterPlanetary Wayback (ipwb) requires Python 3.8+. ipwb can also be used with Docker ([see below](#user-content-using-docker)). +InterPlanetary Wayback (ipwb) requires Python 3.9+. ipwb can also be used with Docker ([see below](#user-content-using-docker)). For conventional usage, the latest release of ipwb can be installed using pip: diff --git a/setup.py b/setup.py index 7579e1b4..db633d88 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ author_email='me@matkelly.com', description=desc, packages=['ipwb'], - python_requires='>=3.8', + python_requires='>=3.9', license='MIT', long_description=long_description, long_description_content_type="text/markdown", @@ -56,10 +56,11 @@ 'Environment :: Web Environment', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'License :: OSI Approved :: MIT License',