Skip to content

Commit 933c48b

Browse files
authored
chore: drop py36 support (#464)
1 parent c8a4796 commit 933c48b

File tree

8 files changed

+3
-29
lines changed

8 files changed

+3
-29
lines changed

.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.6
2928
- 3.7
3029
- 3.8
3130
- 3.9

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.6+
50+
* Python 3.7+
5151

5252

5353
Installation

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_6
7-
buildspec: codebuild/python3.6.yml
86
- identifier: python3_7
97
buildspec: codebuild/python3.7.yml
108
- identifier: python3_8

codebuild/python3.6.yml

-20
Original file line numberDiff line numberDiff line change
@@ -1,20 +0,0 @@
1-
version: 0.2
2-
3-
env:
4-
variables:
5-
TOXENV: "py36-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-
- pyenv install 3.6.15
18-
- pyenv local 3.6.15
19-
- pip install tox tox-pyenv
20-
- tox

examples/setup.py

-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ def get_requirements():
5050
"Programming Language :: Python :: 2",
5151
"Programming Language :: Python :: 2.7",
5252
"Programming Language :: Python :: 3",
53-
"Programming Language :: Python :: 3.5",
54-
"Programming Language :: Python :: 3.6",
5553
"Programming Language :: Python :: 3.7",
5654
"Programming Language :: Python :: 3.8",
5755
"Programming Language :: Python :: 3.9",

examples/tox.ini

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

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

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

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.6",
5251
"Programming Language :: Python :: 3.7",
5352
"Programming Language :: Python :: 3.8",
5453
"Programming Language :: Python :: 3.9",

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{36,37,38,39,310}-{local,integ,ddb,examples}-fast,
3+
py{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)