Skip to content

Commit 846e3b1

Browse files
authored
chore: deprecate python 3.5 (#186)
BREAKING CHANGE: Removes Testing against Python 3.5. Python 3.5 is no longer supported by the Python AWS DynamoDB Encryption Client.
1 parent f8e258e commit 846e3b1

File tree

7 files changed

+3
-39
lines changed

7 files changed

+3
-39
lines changed

Diff for: .github/workflows/ci_tests.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ jobs:
2525
- os: macos-latest
2626
architecture: x64
2727
python:
28-
- 3.5
2928
- 3.6
3029
- 3.7
3130
- 3.8

Diff for: README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Getting Started
4747
Required Prerequisites
4848
======================
4949

50-
* Python 3.5+
50+
* Python 3.6+
5151

5252

5353
Installation

Diff for: buildspec.yml

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ version: 0.2
33
batch:
44
fast-fail: false
55
build-list:
6-
- identifier: python3_5
7-
buildspec: codebuild/python3.5.yml
86
- identifier: python3_6
97
buildspec: codebuild/python3.6.yml
108
- identifier: python3_7

Diff for: codebuild/python3.5.yml

-32
Original file line numberDiff line numberDiff line change
@@ -1,32 +0,0 @@
1-
version: 0.2
2-
3-
env:
4-
variables:
5-
TOXENV: "py35-integ-slow"
6-
AWS_ENCRYPTION_SDK_PYTHON_INTEGRATION_TEST_AWS_KMS_KEY_ID: >-
7-
arn:aws:kms:us-west-2:658956600833:key/b3537ef1-d8dc-4780-9f5a-55776cbb2f7f
8-
AWS_ENCRYPTION_SDK_PYTHON_INTEGRATION_TEST_AWS_KMS_KEY_ID_2: >-
9-
arn:aws:kms:eu-central-1:658956600833:key/75414c93-5285-4b57-99c9-30c1cf0a22c2
10-
11-
phases:
12-
install:
13-
runtime-versions:
14-
python: latest
15-
build:
16-
commands:
17-
# The specific versions are manually installed
18-
# because they are not installed
19-
# by default in CodeBuild containers.
20-
# `pyenv` does not have
21-
# a nice way to just install
22-
# the latest patch version.
23-
# I have selected the current latest patch
24-
# rather than try
25-
# and manage a one-liner or script.
26-
# Testing every minor version
27-
# is too extreme at this time.
28-
# The choice of versions should be reviewed.
29-
- pyenv install 3.5.10
30-
- pyenv local 3.5.10
31-
- pip install tox tox-pyenv
32-
- tox

Diff for: examples/tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[tox]
44
envlist =
5-
py{27,35,36,37,38,39}-examples
5+
py{36,37,38,39}-examples
66

77
[testenv:base-command]
88
commands = python -m pytest --basetemp={envtmpdir} -l {posargs}

Diff for: setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ def get_requirements():
4848
"License :: OSI Approved :: Apache Software License",
4949
"Programming Language :: Python",
5050
"Programming Language :: Python :: 3",
51-
"Programming Language :: Python :: 3.5",
5251
"Programming Language :: Python :: 3.6",
5352
"Programming Language :: Python :: 3.7",
5453
"Programming Language :: Python :: 3.8",

Diff for: tox.ini

+1-1
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,ddb,examples}-fast,
3+
py{36,37,38,39,310}-{local,integ,ddb,examples}-fast,
44
nocmk, sourcebuildcheck,
55
docs, bandit, doc8, readme,
66
flake8{,-tests,-examples}, pylint{,-tests,-examples},

0 commit comments

Comments
 (0)