Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
### Bugs Fixed

### Other Changes
* Python 3.6 is no longer supported. Please use Python version 3.7 or later. For more details, see [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy).

## 1.1.0b2 (2022-07-19)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ _Azure SDK Python packages support for Python 2.7 ended 01 January 2022. For mor

### Prerequisites

- Python 3.6 or later is required to use this package.
- Python 3.7 or later is required to use this package.
- An [Azure subscription][azure_subscription]
- A Language Service resource

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ client = QuestionAnsweringClient(

### Async operations

The modern `azure-ai-language-question-answering` library includes a complete async API supported on Python 3.6+. To use it, you must first install an async transport, such as [aiohttp][aiohttp]. See [azure-core documentation][azure_core_transport] for more information.
The modern `azure-ai-language-question-answering` library includes a complete async API supported on Python 3.7+. To use it, you must first install an async transport, such as [aiohttp][aiohttp]. See [azure-core documentation][azure_core_transport] for more information.

Async operations are available on async clients, which should be closed when they're no longer needed. Each async client is an async context manager and defines an async `close` method. For example:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ These sample programs show common scenarios for the QuestionAnswering client's o

### Prerequisites

* Python 3.6 or later is required to use this package.
* Python 3.7 or later is required to use this package.
* An [Azure subscription][azure_subscription]
* An existing Question Answering resource

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,13 @@
"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",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.6",
python_requires=">=3.7",
zip_safe=False,
packages=find_packages(exclude=[
'tests',
Expand Down