Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .githooks/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ start_time=`date +%s`
tox -e sphinx,doc8 --parallel all
./ci-scripts/displaytime.sh 'sphinx,doc8' $start_time
start_time=`date +%s`
tox -e py36,py37,py38,py39 --parallel all -- tests/unit
./ci-scripts/displaytime.sh 'py36,py37,py38,py39 unit' $start_time
tox -e py37,py38,py39 --parallel all -- tests/unit
./ci-scripts/displaytime.sh 'py37,py38,py39 unit' $start_time
1 change: 0 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ Supported Python Versions

SageMaker Python SDK is tested on:

- Python 3.6
- Python 3.7
- Python 3.8
- Python 3.9
Expand Down
2 changes: 1 addition & 1 deletion requirements/extras/scipy_requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
scipy==1.5.4
scipy==1.7.2
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ def read_requirements(filename):
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

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

skip_missing_interpreters = False

Expand Down Expand Up @@ -74,7 +74,7 @@ commands =
{env:IGNORE_COVERAGE:} coverage report -i --fail-under=86
deps = .[test]
depends =
{py36,py37,py38,py39}: clean
{py37,py38,py39,py310}: clean

[testenv:flake8]
skipdist = true
Expand Down