Skip to content

Commit 540d6e6

Browse files
committed
Merge branch 'main' into vector-search-policy-updates
2 parents be7805c + 91813fc commit 540d6e6

File tree

412 files changed

+214477
-4321
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

412 files changed

+214477
-4321
lines changed

.github/workflows/event-processor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: >
5959
dotnet tool install
6060
Azure.Sdk.Tools.GitHubEventProcessor
61-
--version 1.0.0-dev.20240311.2
61+
--version 1.0.0-dev.20240502.2
6262
--add-source https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json
6363
--global
6464
shell: bash
@@ -114,7 +114,7 @@ jobs:
114114
run: >
115115
dotnet tool install
116116
Azure.Sdk.Tools.GitHubEventProcessor
117-
--version 1.0.0-dev.20240311.2
117+
--version 1.0.0-dev.20240502.2
118118
--add-source https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json
119119
--global
120120
shell: bash

.github/workflows/scheduled-event-processor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: >
4040
dotnet tool install
4141
Azure.Sdk.Tools.GitHubEventProcessor
42-
--version 1.0.0-dev.20240311.2
42+
--version 1.0.0-dev.20240502.2
4343
--add-source https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json
4444
--global
4545
shell: bash

.vscode/cspell.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@
100100
"sdk/ml/azure-ai-ml/swagger/**",
101101
"sdk/ml/azure-ai-ml/NOTICE.txt",
102102
"sdk/ml/azure-ai-ml/.pre-commit-config.yaml",
103+
"sdk/ml/azure-ai-ml/azure/ai/ml/entities/_autogen_entities/_model_base.py",
104+
"sdk/ml/azure-ai-ml/azure/ai/ml/entities/_autogen_entities/_serialization.py",
103105
"sdk/monitor/azure-monitor-opentelemetry/samples/tracing/django/sample/db.sqlite3",
104106
"sdk/monitor/azure-monitor-opentelemetry-exporter/samples/traces/django/sample/db.sqlite3",
105107
"sdk/loadtestservice/azure-developer-loadtesting/**",

eng/emitter-package-lock.json

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

eng/emitter-package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"main": "dist/src/index.js",
33
"dependencies": {
4-
"@azure-tools/typespec-python": "0.23.8"
4+
"@azure-tools/typespec-python": "0.23.9"
55
},
66
"devDependencies": {
7-
"@azure-tools/typespec-azure-core": "~0.41.0",
8-
"@azure-tools/typespec-azure-resource-manager": "~0.41.0",
7+
"@typespec/rest": "~0.55.0",
98
"@azure-tools/typespec-autorest": "~0.41.0",
109
"@typespec/http": "~0.55.0",
11-
"@typespec/rest": "~0.55.0",
10+
"@typespec/openapi": "~0.55.0",
11+
"@azure-tools/typespec-client-generator-core": "~0.41.8",
1212
"@typespec/compiler": "~0.55.0",
1313
"@typespec/versioning": "~0.55.0",
14-
"@typespec/openapi": "~0.55.0",
15-
"@azure-tools/typespec-client-generator-core": "~0.41.7"
14+
"@azure-tools/typespec-azure-resource-manager": "~0.41.0",
15+
"@azure-tools/typespec-azure-core": "~0.41.0"
1616
}
1717
}

eng/pipelines/templates/steps/build-package-artifacts.yml

Lines changed: 36 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,27 @@ steps:
4949
inputs:
5050
versionSpec: $(PythonVersion)
5151

52-
- script: |
53-
python -m pip install setuptools==58.3.0
54-
python -m pip install -r eng/ci_tools.txt
55-
displayName: 'Prep Environment'
52+
- bash: |
53+
python -m venv $(Build.SourcesDirectory)/venv
54+
source $(Build.SourcesDirectory)/venv/bin/activate
55+
which python
56+
python -m pip install --force -r eng/ci_tools.txt
57+
python -m pip freeze --all
58+
echo "##vso[task.setvariable variable=PATH]$PATH"
59+
displayName: 'Prep Environment Linux/Mac'
60+
condition: and(succeeded(), or(eq(variables['Agent.OS'], 'Linux'), eq(variables['Agent.OS'], 'Darwin')))
61+
62+
- pwsh: |
63+
python -m venv $(Build.SourcesDirectory)/venv
64+
./venv/Scripts/Activate.ps1
65+
which python
66+
python -m pip install --force -r eng\ci_tools.txt
67+
python -m pip freeze --all
68+
69+
$path = $env:PATH
70+
Write-Host "##vso[task.setvariable variable=PATH]$path"
71+
displayName: 'Prep Environment Windows'
72+
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'))
5673
5774
- template: set-dev-build.yml@self
5875
parameters:
@@ -77,10 +94,22 @@ steps:
7794
displayName: 'Install QEMU Dependencies'
7895
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))
7996
97+
- bash: |
98+
source $(Build.SourcesDirectory)/venv/bin/activate
99+
which python
100+
sdk_build -d "$(Build.ArtifactStagingDirectory)" "$(TargetingString)" --service=${{parameters.ServiceDirectory}} --inactive
101+
displayName: 'Generate Packages Linux/Mac'
102+
condition: and(succeeded(), or(eq(variables['Agent.OS'], 'Linux'), eq(variables['Agent.OS'], 'Darwin')))
103+
timeoutInMinutes: 80
104+
env:
105+
CIBW_BUILD_VERBOSITY: 3
106+
80107
- pwsh: |
108+
./venv/Scripts/Activate.ps1
109+
which python
81110
sdk_build -d "$(Build.ArtifactStagingDirectory)" "$(TargetingString)" --service=${{parameters.ServiceDirectory}} --inactive
82-
displayName: 'Generate Packages'
83-
condition: succeededOrFailed()
111+
displayName: 'Generate Packages Windows'
112+
condition: and(succeededOrFailed(), eq(variables['Agent.OS'], 'Windows_NT'))
84113
timeoutInMinutes: 80
85114
env:
86115
CIBW_BUILD_VERBOSITY: 3
@@ -90,6 +119,7 @@ steps:
90119
twine check $(Build.ArtifactStagingDirectory)/**/*.whl
91120
twine check $(Build.ArtifactStagingDirectory)/**/*.tar.gz
92121
displayName: 'Verify Readme'
122+
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))
93123
94124
- ${{ parameters.BeforePublishSteps }}
95125

sdk/cognitiveservices/azure-cognitiveservices-anomalydetector/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release History
22

3+
## 0.3.1 (2024-05-01)
4+
5+
This package is no longer being maintained. Use the [azure-ai-anomalydetector](https://pypi.org/project/azure-ai-anomalydetector/) package instead for latest features and support.
6+
37
## 0.3.0 (2020-07-23)
48

59
**Features**
Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,3 @@
11
# Microsoft Azure SDK for Python
22

3-
This is the Microsoft Azure Cognitive Services Anomaly Detector Client Library.
4-
This package has been tested with Python 2.7, 3.6+.
5-
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
6-
7-
8-
# Usage
9-
10-
11-
12-
13-
For code examples, see [Cognitive Services Anomaly Detector](https://docs.microsoft.com/python/api/overview/azure/cognitive-services) on docs.microsoft.com.
14-
15-
16-
# Provide Feedback
17-
18-
If you encounter any bugs or have suggestions, please file an issue in the
19-
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
20-
section of the project.
21-
22-
23-
![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-cognitiveservices-anomalydetector%2FREADME.png)
3+
This package is no longer being maintained. Use the [azure-ai-anomalydetector](https://pypi.org/project/azure-ai-anomalydetector/) package instead for latest features and support.

sdk/cognitiveservices/azure-cognitiveservices-anomalydetector/azure/cognitiveservices/anomalydetector/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = "0.3.0"
12+
VERSION = "0.3.1"
1313

sdk/cognitiveservices/azure-cognitiveservices-anomalydetector/sdk_packaging.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ package_doc_id = "cognitive-services"
66
is_stable = false
77
is_arm = false
88
need_msrestazure = false
9+
auto_update = false

0 commit comments

Comments
 (0)