From c15487e1277bf89739b80d975b06ce4bbee1755c Mon Sep 17 00:00:00 2001 From: Matthew Warren Date: Mon, 7 Oct 2024 17:19:53 -0400 Subject: [PATCH] allow python 3.11 and higher --- pyproject.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fce0286..8679833 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,11 @@ [tool.poetry] name = "boto3-post-conditions" -version = "0.3.0" +version = "0.3.1" description = "Remove retry logic from boto3 clients by enforcing post-conditions." readme = "README.md" repository = "https://github.com/jeking3/boto3-post-conditions/" keywords = ["boto3", "aws", "eventual consistency", "retry"] -authors = ["James E. King III "] +authors = ["James E. King III ", "CloudTruth Developers "] license = "Apache-2.0" classifiers = [ "Development Status :: 4 - Beta", @@ -15,12 +15,14 @@ classifiers = [ "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", "Topic :: Software Development :: Libraries :: Python Modules", "Typing :: Typed" ] [tool.poetry.dependencies] -python = ">=3.8,<3.11" +python = ">=3.8" boto3 = "^1.20" retry = "^0.9.2"