Skip to content

Commit 8716c3d

Browse files
committed
change: remove py311
1 parent 59c736c commit 8716c3d

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.githooks/pre-push

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# this pre-push hook runs style checks and unit tests in python 3.8, 3.9, 3.10, 3.11 using tox.
2+
# this pre-push hook runs style checks and unit tests in python 3.8, 3.9, and 3.10 using tox.
33

44
set -e
55

@@ -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 py38,py39,py310,py311 --parallel all -- tests/unit
16-
./ci-scripts/displaytime.sh 'py38,py39,py310,py311 unit' $start_time
15+
tox -e py38,py39,py310 --parallel all -- tests/unit
16+
./ci-scripts/displaytime.sh 'py38,py39,py310 unit' $start_time

README.rst

-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ SageMaker Python SDK is tested on:
9090
- Python 3.8
9191
- Python 3.9
9292
- Python 3.10
93-
- Python 3.11
9493

9594
AWS Permissions
9695
~~~~~~~~~~~~~~~

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ def read_requirements(filename):
102102
"Programming Language :: Python :: 3.8",
103103
"Programming Language :: Python :: 3.9",
104104
"Programming Language :: Python :: 3.10",
105-
"Programming Language :: Python :: 3.11",
106105
],
107106
install_requires=required_packages,
108107
extras_require=extras,

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,py38,py39,py310,py311
7+
envlist = black-format,flake8,pylint,docstyle,sphinx,doc8,twine,py38,py39,py310
88

99
skip_missing_interpreters = False
1010

@@ -79,7 +79,7 @@ commands =
7979
{env:IGNORE_COVERAGE:} coverage report -i --fail-under=86
8080
deps = .[test]
8181
depends =
82-
{py38,py39,py310,py311}: clean
82+
{py38,py39,py310}: clean
8383

8484
[testenv:flake8]
8585
skipdist = true

0 commit comments

Comments
 (0)