Skip to content

Commit d15170a

Browse files
authored
Restore Python 3.6 support. Closes Azure#22558 (Azure#22559)
1 parent 4fc8d8c commit d15170a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

sdk/search/azure-search-documents/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
### Other Changes
1212

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
## 11.3.0b6 (2021-11-19)
1616

sdk/search/azure-search-documents/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ pip install azure-search-documents
5656

5757
### Prerequisites
5858

59-
* Python 3.7 or later is required to use this package.
59+
* Python 3.6 or later is required to use this package.
6060
* You need an [Azure subscription][azure_sub] and a
6161
[Azure Cognitive Search service][search_resource] to use this package.
6262

sdk/search/azure-search-documents/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
'Programming Language :: Python',
4646
'Programming Language :: Python :: 3 :: Only',
4747
'Programming Language :: Python :: 3',
48+
'Programming Language :: Python :: 3.6',
4849
'Programming Language :: Python :: 3.7',
4950
'Programming Language :: Python :: 3.8',
5051
'Programming Language :: Python :: 3.9',
@@ -59,7 +60,7 @@
5960
'azure',
6061
'azure.search',
6162
]),
62-
python_requires=">=3.7",
63+
python_requires=">=3.6",
6364
install_requires=[
6465
"azure-core<2.0.0,>=1.19.0",
6566
"msrest>=0.6.21",

0 commit comments

Comments
 (0)