Skip to content

Commit fc9e6f9

Browse files
[conversations] Drop python 3.6 (Azure#25792)
* Improve the readability of source code Change str.format() formatting of the source code to f-string formatting. * Fix drop python 3.6 * style: revert keyvault * style: revert keyvault * style: revert keyvault * style: revert keyvault * fix: README.md to only warn of python2.7 Co-authored-by: Wonhyeong Seo <wonhseo@kakao.com>
1 parent e742c6a commit fc9e6f9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

sdk/cognitivelanguage/azure-ai-language-conversations/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
### Bugs Fixed
1010

1111
### Other Changes
12+
* This version and all future versions will require Python 3.7+. Python 3.6 is no longer supported.
1213

1314
## 1.1.0b2 (2022-07-01)
1415

sdk/cognitivelanguage/azure-ai-language-conversations/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ _Azure SDK Python packages support for Python 2.7 ended 01 January 2022. For mor
1818

1919
### Prerequisites
2020

21-
* Python 3.6 or later is required to use this package.
21+
* Python 3.7 or later is required to use this package.
2222
* An [Azure subscription][azure_subscription]
2323
* An existing Azure Language Service Resource
2424

sdk/cognitivelanguage/azure-ai-language-conversations/samples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ These sample programs show common scenarios for the Conversational Language Unde
3131

3232
## Prerequisites
3333

34-
- Python 3.6 or later is required to use this package.
34+
- Python 3.7 or later is required to use this package.
3535
- You must have an [Azure subscription][azure_subscription] and an
3636
[Azure CLU account][azure_clu_account] to run these samples.
3737

sdk/cognitivelanguage/azure-ai-language-conversations/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,13 @@
5050
"Programming Language :: Python",
5151
"Programming Language :: Python :: 3 :: Only",
5252
"Programming Language :: Python :: 3",
53-
"Programming Language :: Python :: 3.6",
5453
"Programming Language :: Python :: 3.7",
5554
"Programming Language :: Python :: 3.8",
5655
"Programming Language :: Python :: 3.9",
5756
"Programming Language :: Python :: 3.10",
5857
"License :: OSI Approved :: MIT License",
5958
],
60-
python_requires=">=3.6",
59+
python_requires=">=3.7",
6160
zip_safe=False,
6261
packages=find_packages(exclude=[
6362
'tests',

0 commit comments

Comments
 (0)