Skip to content

Commit

Permalink
Merge pull request #687 from cyraxjoe/2022-07-23-restrict-mypy-patches
Browse files Browse the repository at this point in the history
Don't apply the mypy patches after 0.971, the changes are released.
  • Loading branch information
adisbladis authored Jul 24, 2022
2 parents 920ba68 + f839d90 commit 7e0ef92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion overrides/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1153,7 +1153,7 @@ lib.composeManyExtensions [
url = "https:/python/mypy/commit/e7869f05751561958b946b562093397027f6d5fa.patch";
sha256 = "sha256-waIZ+m3tfvYE4HJ8kL6rN/C4fMjvLEe9UoPbt9mHWIM=";
})
] ++ lib.optionals (lib.strings.versionAtLeast old.version "0.960") [
] ++ lib.optionals ((lib.strings.versionAtLeast old.version "0.960") && (lib.strings.versionOlder old.version "0.971")) [
(pkgs.fetchpatch {
url = "https:/python/mypy/commit/2004ae023b9d3628d9f09886cbbc20868aee8554.patch";
sha256 = "sha256-y+tXvgyiECO5+66YLvaje8Bz5iPvfWNIBJcsnZ2nOdI=";
Expand Down

0 comments on commit 7e0ef92

Please sign in to comment.