Skip to content

Commit

Permalink
python313Packages.mypy: disable (#346175)
Browse files Browse the repository at this point in the history
  • Loading branch information
natsukium authored Oct 6, 2024
2 parents 1db7dd6 + b618f6b commit 63e0b95
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/python-modules/mypy/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ buildPythonPackage rec {
version = "1.10.1";
pyproject = true;

disabled = pythonOlder "3.8";
# mypy doesn't support python313 yet
# https://github.com/python/mypy/issues/17264
disabled = pythonOlder "3.8" || pythonAtLeast "3.13";

src = fetchFromGitHub {
owner = "python";
Expand Down

0 comments on commit 63e0b95

Please sign in to comment.