Skip to content

Commit e91647a

Browse files
Bumps 8.5 to 8.5.2
1 parent fd310bf commit e91647a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout Repository
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v3
1212
- name: Set up Python 3.x
13-
uses: actions/setup-python@v2
13+
uses: actions/setup-python@v4
1414
with:
1515
python-version: 3.x
1616
- name: Install dependencies
@@ -23,9 +23,9 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout Repository
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v3
2727
- name: Set up Python 3.7
28-
uses: actions/setup-python@v2
28+
uses: actions/setup-python@v4
2929
with:
3030
python-version: 3.x
3131
- name: Install dependencies
@@ -51,9 +51,9 @@ jobs:
5151
continue-on-error: ${{ matrix.experimental }}
5252
steps:
5353
- name: Checkout Repository
54-
uses: actions/checkout@v2
54+
uses: actions/checkout@v3
5555
- name: Set Up Python - ${{ matrix.python-version }}
56-
uses: actions/setup-python@v2
56+
uses: actions/setup-python@v4
5757
with:
5858
python-version: ${{ matrix.python-version }}
5959
- name: Install Dependencies

elasticsearch/_async/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def aiter(x: Union[Iterable[T], AsyncIterable[T]]) -> AsyncIterator[T]:
133133
if hasattr(x, "__anext__"):
134134
return x # type: ignore[return-value]
135135
elif hasattr(x, "__aiter__"):
136-
return x.__aiter__() # type: ignore[union-attr]
136+
return x.__aiter__()
137137

138138
async def f() -> AsyncIterable[T]:
139139
nonlocal x

elasticsearch/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
__versionstr__ = "8.5.1"
18+
__versionstr__ = "8.5.2"

0 commit comments

Comments
 (0)