Skip to content

Commit 4e048f8

Browse files
authored
[Mgmt Core] Prepare release (#41883)
Signed-off-by: Paul Van Eck <paulvaneck@microsoft.com>
1 parent 74b191a commit 4e048f8

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

sdk/core/azure-mgmt-core/CHANGELOG.md

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

3-
## 1.5.1 (2023-XX-XX)
3+
## 1.6.0 (2025-07-02)
44

55
### Other Changes
66

77
- `ARMChallengeAuthenticationPolicy` adopt `on_challenge` in `BearerTokenCredentialPolicy` of `azure-core` to support complete CAE challenges.
8+
- Python 3.8 is no longer supported. Please use Python version 3.9 or later.
89

910
## 1.5.0 (2024-10-31)
1011

sdk/core/azure-mgmt-core/azure/mgmt/core/_version.py

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

12-
VERSION = "1.5.1"
12+
VERSION = "1.6.0"
Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
trio; python_version >= '3.5'
2-
aiohttp>=3.0; python_version >= '3.5'
1+
trio
2+
aiohttp>=3.0
33
typing_extensions>=3.7.2
4-
-e ../azure-core
5-
mock;python_version<="2.7"
4+
../azure-core
65
httpretty
7-
-e ../../../tools/azure-sdk-tools
6+
-e ../../../tools/azure-sdk-tools

sdk/core/azure-mgmt-core/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@
4949
"Programming Language :: Python",
5050
"Programming Language :: Python :: 3 :: Only",
5151
"Programming Language :: Python :: 3",
52-
"Programming Language :: Python :: 3.8",
5352
"Programming Language :: Python :: 3.9",
5453
"Programming Language :: Python :: 3.10",
5554
"Programming Language :: Python :: 3.11",
5655
"Programming Language :: Python :: 3.12",
56+
"Programming Language :: Python :: 3.13",
5757
"License :: OSI Approved :: MIT License",
5858
],
5959
zip_safe=False,
@@ -71,5 +71,5 @@
7171
install_requires=[
7272
"azure-core>=1.32.0",
7373
],
74-
python_requires=">=3.8",
74+
python_requires=">=3.9",
7575
)

0 commit comments

Comments
 (0)