From e1f7b97824eafaa6bda8348c5dedffecb396d714 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 03:00:56 +0000 Subject: [PATCH 1/2] build(deps-dev): bump mypy from 1.18.2 to 1.19.0 Bumps [mypy](https://github.com/python/mypy) from 1.18.2 to 1.19.0. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.18.2...v1.19.0) --- updated-dependencies: - dependency-name: mypy dependency-version: 1.19.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Pipfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pipfile b/Pipfile index f60f8f63..9074602e 100644 --- a/Pipfile +++ b/Pipfile @@ -16,6 +16,6 @@ psycopg-binary = {version = "==3.2.12", markers="implementation_name == 'cpython pytest-cov = "==7.0.0" pytest-xdist = "==3.8.0" mock = "==5.2.0" -mypy = "==1.18.2" +mypy = "==1.19.0" types-setuptools = "==80.9.0.20250822" tbump = "==6.11.0" From d7f089dc59802782c14949c1a46640b35b6b325b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grzegorz=20=C5=9Aliwi=C5=84ski?= Date: Fri, 5 Dec 2025 22:46:04 +0100 Subject: [PATCH 2/2] Do not install mypy on pypy --- Pipfile | 2 +- newsfragments/1127.misc.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 newsfragments/1127.misc.rst diff --git a/Pipfile b/Pipfile index 9074602e..6edce6c4 100644 --- a/Pipfile +++ b/Pipfile @@ -16,6 +16,6 @@ psycopg-binary = {version = "==3.2.12", markers="implementation_name == 'cpython pytest-cov = "==7.0.0" pytest-xdist = "==3.8.0" mock = "==5.2.0" -mypy = "==1.19.0" +mypy = {version = "==1.19.0", markers="implementation_name == 'cpython'"} types-setuptools = "==80.9.0.20250822" tbump = "==6.11.0" diff --git a/newsfragments/1127.misc.rst b/newsfragments/1127.misc.rst new file mode 100644 index 00000000..19ae97ec --- /dev/null +++ b/newsfragments/1127.misc.rst @@ -0,0 +1 @@ +Do not install mypy on pypy.