Skip to content

Commit

Permalink
allow python 3.11 and higher
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwwarren committed Oct 7, 2024
1 parent f40e224 commit c15487e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
authors = ["James E. King III <[email protected]>", "CloudTruth Developers <[email protected]>"]
license = "Apache-2.0"
classifiers = [
"Development Status :: 4 - Beta",
Expand All @@ -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"

Expand Down

0 comments on commit c15487e

Please sign in to comment.