Skip to content

Commit 3612b98

Browse files
add back py3.6 (Azure#22477)
1 parent e5c8c4d commit 3612b98

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

sdk/textanalytics/azure-ai-textanalytics/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- `string_index_type` now correctly defaults to the Python default `UnicodeCodePoint` for `AnalyzeSentimentAction` and `RecognizeCustomEntitiesAction`.
1111

1212
### Other Changes
13-
- Python 2.7 and 3.6 are no longer supported. Please use Python version 3.7 or later.
13+
- Python 2.7 is no longer supported. Please use Python version 3.6 or later.
1414

1515
## 5.2.0b2 (2021-11-02)
1616

sdk/textanalytics/azure-ai-textanalytics/README.md

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

2323
### Prerequisites
2424

25-
- Python 3.7 later is required to use this package.
25+
- Python 3.6 later is required to use this package.
2626
- You must have an [Azure subscription][azure_subscription] and a
2727
[Cognitive Services or Language resource][ta_or_cs_resource] to use this package.
2828

sdk/textanalytics/azure-ai-textanalytics/samples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ These sample programs show common scenarios for the Text Analytics client's offe
3636
|[sample_model_version.py][sample_model_version] and [sample_model_version_async.py][sample_model_version_async]|Set the model version for pre-built Text Analytics models|
3737

3838
## Prerequisites
39-
* Python 3.7 or later is required to use this package
39+
* Python 3.6 or later is required to use this package
4040
* You must have an [Azure subscription][azure_subscription] and an
4141
[Azure Text Analytics account][azure_text_analytics_account] to run these samples.
4242

sdk/textanalytics/azure-ai-textanalytics/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
'Programming Language :: Python',
5050
"Programming Language :: Python :: 3 :: Only",
5151
'Programming Language :: Python :: 3',
52+
'Programming Language :: Python :: 3.6',
5253
'Programming Language :: Python :: 3.7',
5354
'Programming Language :: Python :: 3.8',
5455
'Programming Language :: Python :: 3.9',
@@ -62,7 +63,7 @@
6263
'azure',
6364
'azure.ai',
6465
]),
65-
python_requires=">=3.7",
66+
python_requires=">=3.6",
6667
install_requires=[
6768
"azure-core<2.0.0,>=1.19.1",
6869
"msrest>=0.6.21",

0 commit comments

Comments
 (0)