From d752477d39065e79c6af5a967236fe9f1fb71fa5 Mon Sep 17 00:00:00 2001 From: ci Date: Wed, 24 Jun 2020 17:18:10 +0000 Subject: [PATCH 1/3] prepare release v1.65.1.post1 --- CHANGELOG.md | 6 ++++++ VERSION | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 561b0fe706..910cfa9ffb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v1.65.1.post1 (2020-06-24) + +### Testing and Release Infrastructure + + * add py38 to buildspecs + ## v1.65.1.post0 (2020-06-22) ### Documentation Changes diff --git a/VERSION b/VERSION index f0253778c7..a2b73bc7ec 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.65.2.dev0 +1.65.1.post1 From f6208914c60411b3eab77b6870f85d7cdf552930 Mon Sep 17 00:00:00 2001 From: ci Date: Wed, 24 Jun 2020 17:51:59 +0000 Subject: [PATCH 2/3] update development version to v1.65.2.dev0 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index a2b73bc7ec..f0253778c7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.65.1.post1 +1.65.2.dev0 From 8682a27358018084c273cbfbb74fd116ee9b127f Mon Sep 17 00:00:00 2001 From: Eric Johnson <65414824+metrizable@users.noreply.github.com> Date: Wed, 24 Jun 2020 11:07:29 -0700 Subject: [PATCH 3/3] feature: add 3.8 as supported python version --- README.rst | 5 +++-- setup.py | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 46e1a943b0..ba78d700a9 100644 --- a/README.rst +++ b/README.rst @@ -96,6 +96,7 @@ SageMaker Python SDK is tested on: - Python 2.7 - Python 3.6 - Python 3.7 +- Python 3.8 AWS Permissions ~~~~~~~~~~~~~~~ @@ -123,8 +124,8 @@ You can install the libraries needed to run the tests by running :code:`pip inst We run unit tests with tox, which is a program that lets you run unit tests for multiple Python versions, and also make sure the -code fits our style guidelines. We run tox with Python 2.7, 3.6 and 3.7, so to run unit tests -with the same configuration we do, you'll need to have interpreters for Python 2.7, Python 3.6 and Python 3.7 installed. +code fits our style guidelines. We run tox with Python 2.7, 3.6, 3.7, and 3.8, so to run unit tests +with the same configuration we do, you'll need to have interpreters for Python 2.7, Python 3.6, Python 3.7, and Python 3.8 installed. To run the unit tests with tox, run: diff --git a/setup.py b/setup.py index c74d41029b..e713af36bc 100644 --- a/setup.py +++ b/setup.py @@ -102,6 +102,7 @@ def read_version(): "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", ], install_requires=required_packages, extras_require=extras,