Skip to content

Commit bd60d4c

Browse files
allow Python 3.6 with the sdk (Azure#22456)
1 parent 65e2e01 commit bd60d4c

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

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

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

1111
### Other Changes
12-
- Python 2.7 and 3.6 are no longer supported in this release. Please use Python 3.7 or later.
12+
- Python 2.7 is no longer supported in this release. Please use Python 3.6 or later.
1313

1414
## 3.2.0b2 (2021-11-09)
1515

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ _Azure SDK Python packages support for Python 2.7 ended 01 January 2022. For mor
1616
## Getting started
1717

1818
### Prerequisites
19-
* Python 3.7 or later is required to use this package.
19+
* Python 3.6 or later is required to use this package.
2020
* You must have an [Azure subscription][azure_subscription] and a
2121
[Cognitive Services or Form Recognizer resource][FR_or_CS_resource] to use this package.
2222

sdk/formrecognizer/azure-ai-formrecognizer/dev_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
-e ../../cognitiveservices/azure-mgmt-cognitiveservices
44
../../core/azure-core
55
-e ../../identity/azure-identity
6-
aiohttp>=3.0; python_version >= '3.7'
6+
aiohttp>=3.0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ All of these samples need the endpoint to your Form Recognizer resource ([instru
7171
Please see the samples [here][v3.0.0-samples-tag].
7272

7373
## Prerequisites
74-
* Python 3.7 or later is required to use this package
74+
* Python 3.6 or later is required to use this package
7575
* You must have an [Azure subscription][azure_subscription] and an
7676
[Azure Form Recognizer account][azure_form_recognizer_account] to run these samples.
7777

sdk/formrecognizer/azure-ai-formrecognizer/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.13.0",
6869
"msrest>=0.6.21",

0 commit comments

Comments
 (0)