forked from jeking3/boto3-post-conditions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from cloudtruth/feature/python311
Allow python 3.11 and higher
- Loading branch information
Showing
8 changed files
with
1,505 additions
and
1,206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[mypy] | ||
python_version = 3.8 | ||
python_version = 3.9 | ||
|
||
ignore_missing_imports = False | ||
warn_unused_ignores = True | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
@@ -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" | ||
|
||
|
@@ -46,4 +48,4 @@ build-backend = "poetry.core.masonry.api" | |
# https://github.com/python-poetry/poetry/issues/3456 | ||
name = "pypi-public" | ||
url = "https://pypi.org/simple/" | ||
default = true | ||
priority = "primary" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters