Skip to content

Commit 8b8c9e7

Browse files
[formrecognizer] Drop Python 3.6 (Azure#25076)
* drop python 3.6 * remove sentence about async samples
1 parent 849ca1d commit 8b8c9e7

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
### Bugs Fixed
1515

1616
### Other Changes
17+
- Python 3.6 is no longer supported in this release. Please use Python 3.7 or later.
1718

1819
## 3.2.0b5 (2022-06-07)
1920

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

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

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

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ urlFragment: formrecognizer-samples
1616
> code from client library version 3.1.X or lower to the latest version. Additionally, see the [Changelog][changelog] for more detailed information.
1717
1818
These code samples show common scenario operations with the Azure Form Recognizer client library.
19-
The async versions of the samples require Python 3.6 or later.
2019

2120
These sample programs show common scenarios for the Form Recognizer client's offerings.
2221

@@ -73,7 +72,7 @@ All of these samples need the endpoint to your Form Recognizer resource ([instru
7372
Please see the samples [here][v3.0.0-samples-tag].
7473

7574
## Prerequisites
76-
* Python 3.6 or later is required to use this package
75+
* Python 3.7 or later is required to use this package
7776
* You must have an [Azure subscription][azure_subscription] and an
7877
[Azure Form Recognizer account][azure_form_recognizer_account] to run these samples.
7978

sdk/formrecognizer/azure-ai-formrecognizer/samples/v3.2-beta/advanced_samples/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
> Note: The samples included in this folder are aimed at providing additional context for processing information for the Form Recognizer library clients. These samples currently show usage with a preview version of the library and may be subject to change during later releases.
44
55
These code samples show more advanced scenario operations with the Azure Form Recognizer client library.
6-
The async versions of the samples require Python 3.6 or later.
76

87
All of these samples need the endpoint to your Form Recognizer resource ([instructions on how to get endpoint][get-endpoint-instructions]), and your Form Recognizer API key ([instructions on how to get key][get-key-instructions]).
98

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
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',
@@ -64,7 +63,7 @@
6463
'azure',
6564
'azure.ai',
6665
]),
67-
python_requires=">=3.6",
66+
python_requires=">=3.7",
6867
install_requires=[
6968
"azure-core<2.0.0,>=1.23.0",
7069
"msrest>=0.6.21",

0 commit comments

Comments
 (0)