Skip to content

Commit 4872214

Browse files
authored
11.6.0b1 (#33975)
* 11.6.0b1 * remove py3.7 * update
1 parent a2ae8e0 commit 4872214

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 11.5.0b1 (Unreleased)
3+
## 11.6.0b1 (Unreleased)
44

55
### Features Added
66

@@ -16,6 +16,8 @@
1616

1717
### Other Changes
1818

19+
- Python 3.7 is no longer supported. Please use Python version 3.8 or later.
20+
1921
## 11.4.0 (2023-10-13)
2022

2123
### Features Added
@@ -62,6 +64,7 @@
6264
- Renamed `query_caption_highlight` to `query_caption_highlight_enabled`.
6365
- `query_language` and `query_speller` are not available for `Search` method in this stable release.
6466
- `alias` operations are not available in this stable release.
67+
- `AzureOpenAIEmbeddingSkill`, `AzureOpenAIParameters` and `AzureOpenAIVectorizer` are not available in 11.4.0.
6568

6669
### Other Changes
6770

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

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

4949
### Prerequisites
5050

51-
* Python 3.7 or later is required to use this package.
51+
* Python 3.8 or later is required to use this package.
5252
* You need an [Azure subscription][azure_sub] and an
5353
[Azure AI Search service][search_resource] to use this package.
5454

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
class ApiVersion(str, Enum, metaclass=CaseInsensitiveEnumMeta):
1111
#: this is the default version
1212
V2020_06_30 = "2020-06-30"
13-
V2021_04_30_PREVIEW = "2021-04-30-Preview"
1413
V2023_10_01_PREVIEW = "2023-10-01-Preview"
1514
V2023_11_01 = "2023-11-01"
1615

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
# Licensed under the MIT License.
44
# ------------------------------------
55

6-
VERSION = "11.5.0b1" # type: str
6+
VERSION = "11.6.0b1" # type: str
77

88
SDK_MONIKER = "search-documents/{}".format(VERSION) # type: str

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Then for common search index operations:
4646

4747
## Prerequisites
4848

49-
* Python 3.7 or later is required to use this package
49+
* Python 3.8 or later is required to use this package
5050
* You must have an [Azure subscription](https://azure.microsoft.com/free/)
5151
* You must create the "Hotels" sample index [in the Azure Portal](https://docs.microsoft.com/azure/search/search-get-started-portal)
5252

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
"Programming Language :: Python",
4646
"Programming Language :: Python :: 3 :: Only",
4747
"Programming Language :: Python :: 3",
48-
"Programming Language :: Python :: 3.7",
4948
"Programming Language :: Python :: 3.8",
5049
"Programming Language :: Python :: 3.9",
5150
"Programming Language :: Python :: 3.10",
@@ -63,7 +62,7 @@
6362
"azure.search",
6463
]
6564
),
66-
python_requires=">=3.7",
65+
python_requires=">=3.8",
6766
install_requires=[
6867
"azure-core<2.0.0,>=1.28.0",
6968
"azure-common~=1.1",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Search Performance Tests
22

33
In order to run the performance tests, the `devtools_testutils` package must be installed. This is done as part of the `dev_requirements`.
4-
Start be creating a new virtual environment for your perf tests. This will need to be a Python 3 environment, preferably >=3.7.
4+
Start be creating a new virtual environment for your perf tests. This will need to be a Python 3 environment, preferably >=3.8.
55

66
### Setup for test resources
77

0 commit comments

Comments
 (0)