Skip to content

Commit

Permalink
Merge pull request #317301 from DaGenix/update-mypy
Browse files Browse the repository at this point in the history
Update mypy to version 1.10.0
  • Loading branch information
veprbl authored Jun 5, 2024
2 parents 437e3a2 + 64e2cdf commit 63f559c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
5 changes: 2 additions & 3 deletions pkgs/applications/science/misc/cwltool/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@

python3.pkgs.buildPythonApplication rec {
pname = "cwltool";
version = "3.1.20240404144621";
version = "3.1.20240508115724";
pyproject = true;

src = fetchFromGitHub {
owner = "common-workflow-language";
repo = "cwltool";
rev = "refs/tags/${version}";
hash = "sha256-atpXkMIQ60POuUk99uiiuCoRXt4Seg11g/eHCeTDe+Q=";
hash = "sha256-hBP/8PIqvs820UsxrRuyMVIWgQGFVcMHCUToxhcupTk=";
};

postPatch = ''
Expand All @@ -24,7 +24,6 @@ python3.pkgs.buildPythonApplication rec {
--replace '"schema-salad >= 8.4.20230426093816, < 9",' "" \
--replace "PYTEST_RUNNER + " ""
substituteInPlace pyproject.toml \
--replace "mypy==1.8.0" "mypy" \
--replace "ruamel.yaml>=0.16.0,<0.18" "ruamel.yaml"
'';

Expand Down
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/mypy/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@

buildPythonPackage rec {
pname = "mypy";
version = "1.9.0";
version = "1.10.0";
pyproject = true;

disabled = pythonOlder "3.8";

src = fetchFromGitHub {
owner = "python";
repo = "mypy";
rev = "refs/tags/${version}";
hash = "sha256-uOOZX8bKRunTOgYVbmetu2m0B7kijxBgWdNiLCAhiQ4=";
rev = "refs/tags/v${version}";
hash = "sha256-NCnc4C/YFKHN/kT7RTFCYs/yC00Kt1E7mWCoQuUjxG8=";
};

build-system = [
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/schema-salad/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

buildPythonPackage rec {
pname = "schema-salad";
version = "8.5.20240410123758";
version = "8.5.20240503091721";
pyproject = true;

disabled = pythonOlder "3.8";
Expand All @@ -31,7 +31,7 @@ buildPythonPackage rec {
owner = "common-workflow-language";
repo = "schema_salad";
rev = "refs/tags/${version}";
hash = "sha256-AgXqeiA4sP7KBnUpb2uMWq45G0LhJ5uLtORrOG4UuB0=";
hash = "sha256-VbEIkWzg6kPnJWqbvlfsD83oS0VQasGQo+pUIPiGjhU=";
};

postPatch = ''
Expand Down

0 comments on commit 63f559c

Please sign in to comment.