From ec71d68f13957a32d8866bf8c7e8fcd94986ca46 Mon Sep 17 00:00:00 2001 From: Soumyadip Nandi Date: Fri, 30 May 2025 01:25:53 +0000 Subject: [PATCH 1/2] change: upper bounding dependency on sagemaker-training-toolkit --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 84176f0..84bbe34 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ def read(fname): 'Programming Language :: Python :: 3.9', ], - install_requires=['retrying', 'sagemaker-training>=4.3.0', 'six>=1.12.0'], + install_requires=['retrying', 'sagemaker-training>=4.3.0,<=4.8.3', 'six>=1.12.0'], extras_require={ 'test': test_dependencies }, From 5989777b4d7e2e7da02e491de46d3c325726de12 Mon Sep 17 00:00:00 2001 From: Soumyadip Nandi Date: Tue, 3 Jun 2025 21:07:19 +0000 Subject: [PATCH 2/2] fix flake8 failure --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 9b732df..d99c873 100644 --- a/tox.ini +++ b/tox.ini @@ -19,7 +19,7 @@ exclude = max-complexity = 10 ignore = C901, - E203, # whitespace before ':': Black disagrees with and explicitly violates this. + E203, FI10, FI12, FI13, @@ -27,7 +27,7 @@ ignore = FI15, FI16, FI17, - FI18, # __future__ import "annotations" missing -> check only Python 3.7 compatible + FI18, FI50, FI51, FI52,