Skip to content

Commit edda53f

Browse files
author
Shubham Chaturvedi
committed
fix: deprecate python36 from chalice
1 parent 5a22749 commit edda53f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

decrypt_oracle/.chalice/buildspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 0.2
22
phases:
33
install:
44
commands:
5-
- pip install tox
5+
- pip install "tox < 4.0"
66
build:
77
commands:
88
- cd decrypt_oracle

decrypt_oracle/.chalice/pipeline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
APPLICATION_NAME = "AwsEncryptionSdkDecryptOraclePython"
2525
PIPELINE_STACK_NAME = "{}DeployPipeline".format(APPLICATION_NAME)
26-
CODEBUILD_IMAGE = "aws/codebuild/python:3.6.5"
26+
CODEBUILD_IMAGE = "aws/codebuild/standard:5.0"
2727
BUILDSPEC = "decrypt_oracle/.chalice/buildspec.yaml"
2828
GITHUB_REPO = "aws-encryption-sdk-python"
2929
WAITER_CONFIG = dict(Delay=10)

decrypt_oracle/tox.ini

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ envlist =
3535

3636

3737
[testenv:generate-pipeline]
38-
basepython = python3.9
38+
basepython = python3
3939
skip_install = true
4040
deps =
4141
troposphere[policy]
@@ -44,7 +44,7 @@ commands = python .chalice/pipeline.py {posargs}
4444

4545

4646
[testenv:chalice-prep]
47-
basepython = python3.9
47+
basepython = python3
4848
skip_install = true
4949
recreate = true
5050
deps = {[testenv:build]deps}
@@ -59,7 +59,7 @@ commands =
5959
python {toxinidir}/.chalice/build-requirements.py
6060

6161
[testenv:chalice]
62-
basepython = python3.9
62+
basepython = python3
6363
recreate = true
6464
deps =
6565
{[testenv:chalice-prep]deps}
@@ -69,7 +69,7 @@ commands =
6969
chalice {posargs}
7070

7171
[testenv:chalice-deploy]
72-
basepython = python3.9
72+
basepython = python3
7373
recreate = true
7474
deps =
7575
{[testenv:chalice]deps}

0 commit comments

Comments
 (0)