Skip to content

Commit 72c12bb

Browse files
deprecation: remove support for python 3.6 (#3170)
* feature: support python 3.10 in tox * fix: update scipy * deprecation: remove support for python 3.6
1 parent 8522425 commit 72c12bb

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

.githooks/pre-push

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ start_time=`date +%s`
1212
tox -e sphinx,doc8 --parallel all
1313
./ci-scripts/displaytime.sh 'sphinx,doc8' $start_time
1414
start_time=`date +%s`
15-
tox -e py36,py37,py38,py39 --parallel all -- tests/unit
16-
./ci-scripts/displaytime.sh 'py36,py37,py38,py39 unit' $start_time
15+
tox -e py37,py38,py39 --parallel all -- tests/unit
16+
./ci-scripts/displaytime.sh 'py37,py38,py39 unit' $start_time

README.rst

-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ Supported Python Versions
8787

8888
SageMaker Python SDK is tested on:
8989

90-
- Python 3.6
9190
- Python 3.7
9291
- Python 3.8
9392
- Python 3.9
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
scipy==1.5.4
1+
scipy==1.7.2

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ def read_requirements(filename):
9191
"Natural Language :: English",
9292
"License :: OSI Approved :: Apache Software License",
9393
"Programming Language :: Python",
94-
"Programming Language :: Python :: 3.6",
9594
"Programming Language :: Python :: 3.7",
9695
"Programming Language :: Python :: 3.8",
9796
"Programming Language :: Python :: 3.9",

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = black-format,flake8,pylint,docstyle,sphinx,doc8,twine,py36,py37,py38,py39
7+
envlist = black-format,flake8,pylint,docstyle,sphinx,doc8,twine,py37,py38,py39,py310
88

99
skip_missing_interpreters = False
1010

@@ -74,7 +74,7 @@ commands =
7474
{env:IGNORE_COVERAGE:} coverage report -i --fail-under=86
7575
deps = .[test]
7676
depends =
77-
{py36,py37,py38,py39}: clean
77+
{py37,py38,py39,py310}: clean
7878

7979
[testenv:flake8]
8080
skipdist = true

0 commit comments

Comments
 (0)