Skip to content

Commit 09ebe36

Browse files
authored
chore: deprecate python 3.5 (#373)
BREAKING CHANGE: Removes Testing against Python 3.5. Python 3.5 is no longer supported by the Python AWS Encryption SDK.
1 parent caa39b7 commit 09ebe36

File tree

10 files changed

+3
-88
lines changed

10 files changed

+3
-88
lines changed

.github/workflows/ci_test-vector-handler.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ jobs:
2222
- macos-latest
2323
python:
2424
- 2.7
25-
- 3.5
2625
- 3.6
2726
- 3.7
2827
- 3.8

.github/workflows/ci_tests.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
2828
- windows-latest
2929
- macos-latest
3030
python:
31-
- 3.5
3231
- 3.6
3332
- 3.7
3433
- 3.8

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Getting Started
3434
Required Prerequisites
3535
======================
3636

37-
* Python 3.5+
37+
* Python 3.6+
3838
* cryptography >= 2.5.0
3939
* boto3 >= 1.10.0
4040
* attrs

buildspec.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,6 @@ version: 0.2
33
batch:
44
fast-fail: false
55
build-list:
6-
- identifier: py35_integ
7-
buildspec: codebuild/py35/integ.yml
8-
- identifier: py35_examples
9-
buildspec: codebuild/py35/examples.yml
10-
- identifier: py35_awses_local
11-
buildspec: codebuild/py35/awses_local.yml
12-
136
- identifier: py36_integ
147
buildspec: codebuild/py36/integ.yml
158
- identifier: py36_examples

codebuild/py35/awses_local.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

codebuild/py35/examples.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

codebuild/py35/integ.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

decrypt_oracle/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{35,36,37,38,39}-{local,integ},
3+
py{36,37,38,39}-{local,integ},
44
bandit, doc8, readme, docs,
55
{flake8,pylint}{,-tests},
66
# prone to false positives

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ def get_requirements():
4646
"License :: OSI Approved :: Apache Software License",
4747
"Programming Language :: Python",
4848
"Programming Language :: Python :: 3",
49-
"Programming Language :: Python :: 3.5",
5049
"Programming Language :: Python :: 3.6",
5150
"Programming Language :: Python :: 3.7",
5251
"Programming Language :: Python :: 3.8",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{35,36,37,38,39,310}-{local,integ,accept,examples}, nocmk,
3+
py{36,37,38,39,310}-{local,integ,accept,examples}, nocmk,
44
bandit, doc8, readme, docs,
55
{flake8,pylint}{,-tests,-examples},
66
isort-check, black-check,

0 commit comments

Comments
 (0)