Skip to content

Commit ac03de7

Browse files
authored
Add extra dependency for [aio] (#26405)
* add extra dependency * update * Update CHANGELOG.md
1 parent 933f348 commit ac03de7

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

sdk/core/azure-core/CHANGELOG.md

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

3-
## 1.25.2 (Unreleased)
4-
5-
### Features Added
6-
7-
### Breaking Changes
8-
9-
### Bugs Fixed
3+
## 1.26.0 (2022-10-06)
104

115
### Other Changes
126

137
- LRO polling will not wait anymore before doing the first status check #26376
8+
- Added extra dependency for [aio]. pip install azure-core[aio] installs aiohttp too.
149

1510
## 1.25.1 (2022-09-01)
1611

sdk/core/azure-core/azure/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.25.2"
12+
VERSION = "1.26.0"

sdk/core/azure-core/setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,9 @@
7070
'six>=1.11.0',
7171
"typing-extensions>=4.0.1",
7272
],
73+
extras_require={
74+
"aio": [
75+
"aiohttp>=3.0",
76+
],
77+
},
7378
)

0 commit comments

Comments
 (0)