Skip to content

Commit

Permalink
v2.7: remove support for Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
benkehoe committed Nov 3, 2022
1 parent 3f5154f commit d7b521e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
test:
strategy:
matrix:
python: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python: ["3.7", "3.8", "3.9", "3.10"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

`aws-error-utils` uses [monotonic versioning](blog.appliedcompscilab.com/monotonic_versioning_manifesto/).

## v2.7
* Remove support for Python 3.6.

## v2.6
* Add `errors.ALL` to match all `ClientError`s.

Expand Down
2 changes: 1 addition & 1 deletion aws_error_utils/aws_error_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
operation_name = e.operation_name
"""

__version__ = "2.6.0" # update here and pyproject.toml
__version__ = "2.7.0" # update here and pyproject.toml

__all__ = [
"AWSErrorInfo",
Expand Down
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aws-error-utils"
version = "2.6.0" # update here and aws_error_utils.py
version = "2.7.0" # update here and aws_error_utils.py
description = "Error-handling functions for boto3/botocore"
authors = ["Ben Kehoe"]
license = "Apache-2.0"
Expand All @@ -17,15 +17,13 @@ classifiers = [
]

[tool.poetry.dependencies]
python = ">=3.6"
python = ">=3.7,<4"
botocore = "*"
dataclasses = { version = "*", python = "<3.7" }

[tool.poetry.dev-dependencies]
pylint = "*"
pytest = "^6.2.5"
mypy = "^0.931"
types-dataclasses = { version = "*", python = "<3.7" }

[build-system]
requires = ["poetry_core>=1.0.0"]
Expand Down

0 comments on commit d7b521e

Please sign in to comment.