File tree Expand file tree Collapse file tree 7 files changed +9
-8
lines changed
sdk/search/azure-search-documents Expand file tree Collapse file tree 7 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Release History
2
2
3
- ## 11.5 .0b1 (Unreleased)
3
+ ## 11.6 .0b1 (Unreleased)
4
4
5
5
### Features Added
6
6
16
16
17
17
### Other Changes
18
18
19
+ - Python 3.7 is no longer supported. Please use Python version 3.8 or later.
20
+
19
21
## 11.4.0 (2023-10-13)
20
22
21
23
### Features Added
62
64
- Renamed ` query_caption_highlight ` to ` query_caption_highlight_enabled ` .
63
65
- ` query_language ` and ` query_speller ` are not available for ` Search ` method in this stable release.
64
66
- ` alias ` operations are not available in this stable release.
67
+ - ` AzureOpenAIEmbeddingSkill ` , ` AzureOpenAIParameters ` and ` AzureOpenAIVectorizer ` are not available in 11.4.0.
65
68
66
69
### Other Changes
67
70
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ pip install azure-search-documents
48
48
49
49
### Prerequisites
50
50
51
- * Python 3.7 or later is required to use this package.
51
+ * Python 3.8 or later is required to use this package.
52
52
* You need an [ Azure subscription] [ azure_sub ] and an
53
53
[ Azure AI Search service] [ search_resource ] to use this package.
54
54
Original file line number Diff line number Diff line change 10
10
class ApiVersion (str , Enum , metaclass = CaseInsensitiveEnumMeta ):
11
11
#: this is the default version
12
12
V2020_06_30 = "2020-06-30"
13
- V2021_04_30_PREVIEW = "2021-04-30-Preview"
14
13
V2023_10_01_PREVIEW = "2023-10-01-Preview"
15
14
V2023_11_01 = "2023-11-01"
16
15
Original file line number Diff line number Diff line change 3
3
# Licensed under the MIT License.
4
4
# ------------------------------------
5
5
6
- VERSION = "11.5 .0b1" # type: str
6
+ VERSION = "11.6 .0b1" # type: str
7
7
8
8
SDK_MONIKER = "search-documents/{}" .format (VERSION ) # type: str
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ Then for common search index operations:
46
46
47
47
## Prerequisites
48
48
49
- * Python 3.7 or later is required to use this package
49
+ * Python 3.8 or later is required to use this package
50
50
* You must have an [ Azure subscription] ( https://azure.microsoft.com/free/ )
51
51
* You must create the "Hotels" sample index [ in the Azure Portal] ( https://docs.microsoft.com/azure/search/search-get-started-portal )
52
52
Original file line number Diff line number Diff line change 45
45
"Programming Language :: Python" ,
46
46
"Programming Language :: Python :: 3 :: Only" ,
47
47
"Programming Language :: Python :: 3" ,
48
- "Programming Language :: Python :: 3.7" ,
49
48
"Programming Language :: Python :: 3.8" ,
50
49
"Programming Language :: Python :: 3.9" ,
51
50
"Programming Language :: Python :: 3.10" ,
63
62
"azure.search" ,
64
63
]
65
64
),
66
- python_requires = ">=3.7 " ,
65
+ python_requires = ">=3.8 " ,
67
66
install_requires = [
68
67
"azure-core<2.0.0,>=1.28.0" ,
69
68
"azure-common~=1.1" ,
Original file line number Diff line number Diff line change 1
1
# Search Performance Tests
2
2
3
3
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 .
5
5
6
6
### Setup for test resources
7
7
You can’t perform that action at this time.
0 commit comments