Skip to content

Commit 5db2b22

Browse files
authored
Merge pull request #168 from gopythongo/dependabot/pip/mypy-1.18.2
Bump mypy from 1.17.1 to 1.18.2
2 parents da54985 + 9c76da1 commit 5db2b22

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

aptly_api/tests/test_client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ def test_instantiate(self) -> None:
3232
def test_api_subdir_get(self, *, rmock: requests_mock.Mocker) -> None:
3333
# register mock:// scheme with urllib.parse
3434
import urllib.parse
35-
urllib.parse.uses_netloc += ['mock']
36-
urllib.parse.uses_relative += ['mock']
37-
urllib.parse.uses_fragment += ['mock']
38-
urllib.parse.uses_params += ['mock']
35+
urllib.parse.uses_netloc.append('mock')
36+
urllib.parse.uses_relative.append('mock')
37+
urllib.parse.uses_fragment.append('mock')
38+
urllib.parse.uses_params.append('mock')
3939

4040
cl = AptlyClient("mock://test/basedir/")
4141
rmock.get("mock://test/basedir/api/test", status_code=200, text='')

requirements-test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ flake8==7.3.0
55
pep257==0.7.0
66
doc8==1.1.2
77
Pygments==2.19.2
8-
mypy==1.17.1
8+
mypy==1.18.2
99
pytest==8.4.2
1010
pytest-cov==7.0.0

0 commit comments

Comments
 (0)