Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c67ea834c167
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1a3a0e818144
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jan 30, 2020

  1. python: numpy: 1.18.0 -> 1.18.1

    FRidh committed Jan 30, 2020
    Copy the full SHA
    98efcba View commit details
  2. python: pandas: 0.25.3 -> 1.0.0

    FRidh committed Jan 30, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    1a3a0e8 View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/development/python-modules/numpy/default.nix
  2. +2 −2 pkgs/development/python-modules/pandas/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/numpy/default.nix
Original file line number Diff line number Diff line change
@@ -27,13 +27,13 @@ let
};
in buildPythonPackage rec {
pname = "numpy";
version = "1.18.0";
version = "1.18.1";
format = "pyproject.toml";

src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "a9d72d9abaf65628f0f31bbb573b7d9304e43b1e6bbae43149c17737a42764c4";
sha256 = "b6ff59cee96b454516e47e7721098e6ceebef435e3e21ac2d6c3b8b02628eb77";
};

nativeBuildInputs = [ gfortran pytest cython setuptoolsBuildHook ];
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pandas/default.nix
Original file line number Diff line number Diff line change
@@ -30,11 +30,11 @@ let

in buildPythonPackage rec {
pname = "pandas";
version = "0.25.3";
version = "1.0.0";

src = fetchPypi {
inherit pname version;
sha256 = "52da74df8a9c9a103af0a72c9d5fdc8e0183a90884278db7f386b5692a2220a4";
sha256 = "3ea6cc86931f57f18b1240572216f09922d91b19ab8a01cf24734394a3db3bec";
};

checkInputs = [ pytest glibcLocales moto hypothesis ];