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: 32a5b44b8d62
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3660d282acaf
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 7, 2021

  1. Revert "python3Packages.bokeh: 2.2.3 -> 2.3.0"

    This version of bokeh is apparently incompatible with the current panel (0.9.7).
    Using it results in all kind of missing models and modules.
    
    We should upgrade panel but it is not straightforward. Until then, bokeh should
    remain at 2.2.
    
    This reverts commit ba9b70b.
    FRidh committed Apr 7, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    NeQuissimus Tim Steinbach
    Copy the full SHA
    3660d28 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/bokeh/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/bokeh/default.nix
Original file line number Diff line number Diff line change
@@ -33,11 +33,11 @@

buildPythonPackage rec {
pname = "bokeh";
version = "2.3.0";
version = "2.2.3";

src = fetchPypi {
inherit pname version;
sha256 = "dd417708f90702190222b1068a645acae99e66d4b58d7a336d545aeaa04e9b40";
sha256 = "c4a3f97afe5f525019dd58ee8c4e3d43f53fe1b1ac264ccaae9b02c07b2abc17";
};

patches = [