Skip to content

Commit 82bff90

Browse files
author
Chuyang Deng
committed
fix: removing py27/py38
1 parent 25c1f98 commit 82bff90

File tree

4 files changed

+7
-27
lines changed

4 files changed

+7
-27
lines changed

.coveragerc_py27

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

buildspec-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ phases:
1919
# run unit tests
2020
- AWS_ACCESS_KEY_ID= AWS_SECRET_ACCESS_KEY= AWS_SESSION_TOKEN=
2121
AWS_CONTAINER_CREDENTIALS_RELATIVE_URI= AWS_DEFAULT_REGION=
22-
tox -e py27,py36,py37 --parallel all -- test/unit
22+
tox -e py36,py37 --parallel all -- test/unit
2323

2424
# run functional tests
2525
- $(aws ecr get-login --no-include-email --region us-west-2)
26-
- IGNORE_COVERAGE=- tox -e py27,py36,py37 -- test/functional
26+
- IGNORE_COVERAGE=- tox -e py36,py37 -- test/functional
2727

2828

2929
# build dummy container
@@ -36,7 +36,7 @@ phases:
3636
- cd ../..
3737

3838
# run local integration tests
39-
- IGNORE_COVERAGE=- tox -e py27,py36,py37 -- test/integration/local
39+
- IGNORE_COVERAGE=- tox -e py36,py37 -- test/integration/local
4040

4141
# generate the distribution package
4242
- python3 setup.py sdist

buildspec.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ phases:
1717
# run unit tests
1818
- AWS_ACCESS_KEY_ID= AWS_SECRET_ACCESS_KEY= AWS_SESSION_TOKEN=
1919
AWS_CONTAINER_CREDENTIALS_RELATIVE_URI= AWS_DEFAULT_REGION=
20-
tox -e py27,py36,py37 --parallel all -- test/unit
20+
tox -e py36,py37 --parallel all -- test/unit
2121

2222
# run functional tests
2323
- $(aws ecr get-login --no-include-email --region us-west-2)
24-
- IGNORE_COVERAGE=- tox -e py27,py36,py37 -- test/functional
24+
- IGNORE_COVERAGE=- tox -e py36,py37 -- test/functional
2525

2626
# build dummy container
2727
- python setup.py sdist
@@ -33,4 +33,4 @@ phases:
3333
- cd ../..
3434

3535
# run local integration tests
36-
- IGNORE_COVERAGE=- tox -e py27,py36,py37 -- test/integration/local
36+
- IGNORE_COVERAGE=- tox -e py36,py37 -- test/integration/local

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def read_version():
8585
"pytest==4.4.1",
8686
"pytest-cov",
8787
"mock",
88-
"sagemaker<2",
88+
"sagemaker[local]<2",
8989
"black==19.3b0 ; python_version >= '3.6'",
9090
]
9191
},

0 commit comments

Comments
 (0)