Skip to content

Commit

Permalink
chore: deprecate python 3.5 (#373)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Removes Testing against Python 3.5. Python 3.5 is no longer supported by the Python AWS Encryption SDK.
  • Loading branch information
texastony committed Nov 8, 2021
1 parent caa39b7 commit 09ebe36
Show file tree
Hide file tree
Showing 10 changed files with 3 additions and 88 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci_test-vector-handler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
- macos-latest
python:
- 2.7
- 3.5
- 3.6
- 3.7
- 3.8
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ci_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
- windows-latest
- macos-latest
python:
- 3.5
- 3.6
- 3.7
- 3.8
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Getting Started
Required Prerequisites
======================

* Python 3.5+
* Python 3.6+
* cryptography >= 2.5.0
* boto3 >= 1.10.0
* attrs
Expand Down
7 changes: 0 additions & 7 deletions buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@ version: 0.2
batch:
fast-fail: false
build-list:
- identifier: py35_integ
buildspec: codebuild/py35/integ.yml
- identifier: py35_examples
buildspec: codebuild/py35/examples.yml
- identifier: py35_awses_local
buildspec: codebuild/py35/awses_local.yml

- identifier: py36_integ
buildspec: codebuild/py36/integ.yml
- identifier: py36_examples
Expand Down
27 changes: 0 additions & 27 deletions codebuild/py35/awses_local.yml

This file was deleted.

24 changes: 0 additions & 24 deletions codebuild/py35/examples.yml

This file was deleted.

24 changes: 0 additions & 24 deletions codebuild/py35/integ.yml

This file was deleted.

2 changes: 1 addition & 1 deletion decrypt_oracle/tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{35,36,37,38,39}-{local,integ},
py{36,37,38,39}-{local,integ},
bandit, doc8, readme, docs,
{flake8,pylint}{,-tests},
# prone to false positives
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ def get_requirements():
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{35,36,37,38,39,310}-{local,integ,accept,examples}, nocmk,
py{36,37,38,39,310}-{local,integ,accept,examples}, nocmk,
bandit, doc8, readme, docs,
{flake8,pylint}{,-tests,-examples},
isort-check, black-check,
Expand Down

0 comments on commit 09ebe36

Please sign in to comment.