From 731ef66297f2e2a1d178489cce8a72157acd8a40 Mon Sep 17 00:00:00 2001 From: Sreevishnu Date: Mon, 9 Jan 2023 12:12:29 +0530 Subject: [PATCH 1/8] update typing-extension, update CHANGELOG, update version --- CHANGELOG.md | 6 ++++++ requirements.txt | 2 +- version.txt | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c21c60..77d18b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.1] + +### Changed + +* Updated `typing-extension` to version `4.0.0` + ## [0.13.0] ## Changed diff --git a/requirements.txt b/requirements.txt index dff5a5c..d3ce917 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ cfenv==0.5.3 requests==2.25.1 -typing-extensions==3.10.0.0 +typing-extensions==4.0.0 diff --git a/version.txt b/version.txt index 54d1a4f..c317a91 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.13.0 +0.13.1 From ac94a94f4bad1c99edee3654db3c6139c71cbca0 Mon Sep 17 00:00:00 2001 From: Sreevishnu Date: Mon, 9 Jan 2023 12:17:52 +0530 Subject: [PATCH 2/8] fix CHANGELOG --- CHANGELOG.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77d18b2..fd787d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,13 +10,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -* Updated `typing-extension` to version `4.0.0` +* Updated `typing-extension` to version `4.0.0` [#131] + +[#131]: https://github.com/SAP/data-attribute-recommendation-python-sdk/pull/131 ## [0.13.0] ## Changed -* `InferenceClient.create_inference_request*` methods now default to `retry=True`. [130] +* `InferenceClient.create_inference_request*` methods now default to `retry=True`. [#130] + +[#130]: https://github.com/SAP/data-attribute-recommendation-python-sdk/pull/130 ## [0.12.0] @@ -280,7 +284,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * First public release -[Unreleased]: https://github.com/SAP/data-attribute-recommendation-python-sdk/compare/rel/0.13.0...HEAD +[Unreleased]: https://github.com/SAP/data-attribute-recommendation-python-sdk/compare/rel/0.13.1...HEAD +[0.13.1]: https://github.com/SAP/data-attribute-recommendation-python-sdk/compare/rel/0.13.0...rel/0.13.1 [0.13.0]: https://github.com/SAP/data-attribute-recommendation-python-sdk/compare/rel/0.12.0...rel/0.13.0 [0.12.0]: https://github.com/SAP/data-attribute-recommendation-python-sdk/compare/rel/0.11.0...rel/0.12.0 [0.11.0]: https://github.com/SAP/data-attribute-recommendation-python-sdk/compare/rel/0.10.0...rel/0.11.0 From 8c0adbcbb926879e92af95247f109d62ea3f7b9d Mon Sep 17 00:00:00 2001 From: Sreevishnu Date: Mon, 9 Jan 2023 12:29:13 +0530 Subject: [PATCH 3/8] pin importlib_metadata to fix flake8 --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b68f51d..462daa3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -11,7 +11,7 @@ repos: rev: 3.9.2 hooks: - id: flake8 - additional_dependencies: [ "flake8-bugbear==21.4.3" ] + additional_dependencies: [ 'flake8-bugbear==21.4.3', 'importlib_metadata==4.3' ] - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.0.1 hooks: From 5a10bf23720362c68a6a4f8bf06ec3aff7afc2b0 Mon Sep 17 00:00:00 2001 From: Sreevishnu Date: Mon, 9 Jan 2023 12:52:06 +0530 Subject: [PATCH 4/8] update coveralls to 3.3.1 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 7d7d920..7c55fbf 100644 --- a/tox.ini +++ b/tox.ini @@ -14,7 +14,7 @@ deps = pytest==6.1.2 # latest supporting Python 3.5 pytest-cov==2.12.1 httpretty==1.1.4 - cov: coveralls==3.1.0 + cov: coveralls==3.3.1 system_tests: pytest-html==3.1.1 commands = From d28331f85a7e7393e2032e1a3e150fa4a3495b30 Mon Sep 17 00:00:00 2001 From: Sreevishnu Date: Mon, 9 Jan 2023 13:00:46 +0530 Subject: [PATCH 5/8] update pytest-cov --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 7c55fbf..e9d302e 100644 --- a/tox.ini +++ b/tox.ini @@ -12,7 +12,7 @@ passenv = DAR_* TRAVIS TRAVIS_* COVERALLS_* deps = zipp<2.0.0 # for python 3.5 support pytest==6.1.2 # latest supporting Python 3.5 - pytest-cov==2.12.1 + pytest-cov==4.0.0 httpretty==1.1.4 cov: coveralls==3.3.1 system_tests: pytest-html==3.1.1 From e40fc4b8970ebc0133fd35a4182947387a3e9c21 Mon Sep 17 00:00:00 2001 From: Sreevishnu Date: Mon, 9 Jan 2023 13:16:31 +0530 Subject: [PATCH 6/8] revert to old version for py3.5 support, pin coverage to 4.5.4 --- tox.ini | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index e9d302e..5e4ca46 100644 --- a/tox.ini +++ b/tox.ini @@ -12,9 +12,10 @@ passenv = DAR_* TRAVIS TRAVIS_* COVERALLS_* deps = zipp<2.0.0 # for python 3.5 support pytest==6.1.2 # latest supporting Python 3.5 - pytest-cov==4.0.0 + pytest-cov==2.12.1 httpretty==1.1.4 - cov: coveralls==3.3.1 + cov: coveralls==3.1.0 + coverage==4.5.4 system_tests: pytest-html==3.1.1 commands = From fbaea3f9640fbb5eb5c3bef9e1fe2ab236b15b0d Mon Sep 17 00:00:00 2001 From: Sreevishnu Date: Mon, 9 Jan 2023 13:22:17 +0530 Subject: [PATCH 7/8] pin coverage to 6.4.1 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 5e4ca46..e12b186 100644 --- a/tox.ini +++ b/tox.ini @@ -15,7 +15,7 @@ deps = pytest-cov==2.12.1 httpretty==1.1.4 cov: coveralls==3.1.0 - coverage==4.5.4 + coverage==6.4.1 system_tests: pytest-html==3.1.1 commands = From 845989e006bc79ad3b9914a9d6f907a82f972c4c Mon Sep 17 00:00:00 2001 From: Sreevishnu Date: Mon, 9 Jan 2023 13:31:09 +0530 Subject: [PATCH 8/8] pin coverage to 5.2.1 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index e12b186..05c5039 100644 --- a/tox.ini +++ b/tox.ini @@ -15,7 +15,7 @@ deps = pytest-cov==2.12.1 httpretty==1.1.4 cov: coveralls==3.1.0 - coverage==6.4.1 + coverage==5.2.1 system_tests: pytest-html==3.1.1 commands =