From e237576f63b9984185b2a9cba149bb73c36e5146 Mon Sep 17 00:00:00 2001 From: Robert Blackhart Date: Wed, 31 Jul 2024 11:04:39 -0400 Subject: [PATCH] fix minimum Python version listed in README --- README.md | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d1d9af6..611ce2e 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Some things to consider and prepare before you can use this library. ## Software requirements ``` -1. Python 3.5 or later +1. Python 3.9 or later ``` ## Installing and importing the library diff --git a/pyproject.toml b/pyproject.toml index cc77c09..5ac5cab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "recline" -version = "2024.7" +version = "2024.7.1" description = "Writing argparse-based command line applications can become tedious, repetitive, and difficult to do right. Relax and let this library free you from that burden." license = "BSD-3-Clause" authors = ["NetApp "]