File tree Expand file tree Collapse file tree 5 files changed +71
-21
lines changed
Expand file tree Collapse file tree 5 files changed +71
-21
lines changed Original file line number Diff line number Diff line change @@ -15,17 +15,17 @@ jobs:
1515 runs-on : ubuntu-latest
1616 steps :
1717 - name : Check out the repository
18- uses : actions/checkout@v2
18+ uses : actions/checkout@v4
1919
2020 - name : Set up Python ${{ matrix.python-version }}
21- uses : actions/setup-python@v2
21+ uses : actions/setup-python@v5
2222 with :
2323 python-version : ${{ matrix.python-version }}
2424
2525 - name : Install Poetry
26- uses : abatilo/actions-poetry@v2.1.0
26+ uses : abatilo/actions-poetry@v3
2727 with :
28- poetry-version : 1.5 .1
28+ poetry-version : 2.0 .1
2929
3030 - name : Install dependencies
3131 run : poetry install
Original file line number Diff line number Diff line change 77from typing import Any , Iterable
88
99import requests
10-
11- # Type annotations for urllib3 will be released with v2.
12- from urllib3 .poolmanager import PoolManager # type: ignore[import]
10+ from urllib3 .poolmanager import PoolManager
1311
1412from . import google
1513
1614SSL_DEFAULT_CIPHERS = None
1715if version ("urllib3" ) < "2.0.0a1" :
18- from urllib3 .util .ssl_ import DEFAULT_CIPHERS # type: ignore[import]
16+ # pylint: disable-next=no-name-in-module
17+ from urllib3 .util .ssl_ import DEFAULT_CIPHERS
1918
2019 SSL_DEFAULT_CIPHERS = DEFAULT_CIPHERS
2120
You can’t perform that action at this time.
0 commit comments