Skip to content

Commit

Permalink
Restore Python 3.6 support. Closes Azure#22558 (Azure#22559)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjprescott authored Jan 19, 2022
1 parent 4fc8d8c commit d15170a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sdk/search/azure-search-documents/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

### Other Changes

- Python 2.7 and 3.6 are no longer supported. Please use Python version 3.7 or later.
- Python 2.7 is no longer supported. Please use Python version 3.6 or later.

## 11.3.0b6 (2021-11-19)

Expand Down
2 changes: 1 addition & 1 deletion sdk/search/azure-search-documents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pip install azure-search-documents

### Prerequisites

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

Expand Down
3 changes: 2 additions & 1 deletion sdk/search/azure-search-documents/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand All @@ -59,7 +60,7 @@
'azure',
'azure.search',
]),
python_requires=">=3.7",
python_requires=">=3.6",
install_requires=[
"azure-core<2.0.0,>=1.19.0",
"msrest>=0.6.21",
Expand Down

0 comments on commit d15170a

Please sign in to comment.