Skip to content

Commit

Permalink
Merge pull request tweag#333 from tweag/update_flake_lock_action
Browse files Browse the repository at this point in the history
flake.lock: Update
  • Loading branch information
turion authored Mar 26, 2024
2 parents 8e77e4b + 2361a40 commit 4638d48
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 29 deletions.
30 changes: 15 additions & 15 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
# https://github.com/tweag/monad-bayes/pull/256: Don't run tests on Mac because of machine precision issues
modifier = drv: if system == "x86_64-linux" then drv else pkgs.haskell.lib.dontCheck drv;
overrides = self: super: with pkgs.haskell.lib; { # Please check after flake.lock updates whether some of these overrides can be removed
brick = super.brick_2_3_1;
};
};
ghcs = [ # Always keep this up to date with the tested-with section in monad-bayes.cabal!
Expand Down
29 changes: 15 additions & 14 deletions monad-bayes.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -38,34 +38,35 @@ flag dev

common deps
build-depends:
, base >=4.15 && <4.19
, brick >=1.0 && <2.0
, containers >=0.5.10 && <0.7
, base >=4.15 && <4.19
, brick ^>=2.3.1
, containers >=0.5.10 && <0.7
, foldl ^>=1.4
, free >=5.0.2 && <5.2
, free ^>=5.2
, histogram-fill ^>=0.9
, ieee754 ^>=0.8.0
, integration ^>=0.2
, lens ^>=5.2
, linear ^>=1.22
, log-domain >=0.12 && <0.14
, math-functions >=0.2.1 && <0.4
, log-domain >=0.12 && <0.14
, math-functions >=0.2.1 && <0.4
, matrix ^>=0.3
, monad-coroutine ^>=0.9.0
, monad-extras ^>=0.6
, mtl >=2.2.2 && <2.4
, mwc-random >=0.13.6 && <0.16
, mtl >=2.2.2 && <2.4
, mwc-random >=0.13.6 && <0.16
, pipes ^>=4.3
, pretty-simple ^>=4.1
, primitive >=0.7 && <0.9
, primitive >=0.7 && <0.9
, random ^>=1.2
, safe ^>=0.3.17
, scientific ^>=0.3
, statistics >=0.14.0 && <0.17
, text >=1.2 && <2.1
, transformers >=0.5.6 && <0.7
, vector >=0.12.0 && <0.14
, vty ^>=5.38
, statistics >=0.14.0 && <0.17
, text >=1.2 && <2.1
, transformers >=0.5.6 && <0.7
, vector >=0.12.0 && <0.14
, vty ^>=6.1
, vty-unix ^>=0.2.0.0

common test-deps
build-depends:
Expand Down
1 change: 1 addition & 0 deletions src/Control/Monad/Bayes/Inference/TUI.hs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import Data.Text.Lazy.IO qualified as TL
import GHC.Float (double2Float)
import Graphics.Vty
import Graphics.Vty qualified as V
import Graphics.Vty.Platform.Unix qualified as V
import Numeric.Log (Log (ln))
import Pipes (runEffect, (>->))
import Pipes qualified as P
Expand Down

0 comments on commit 4638d48

Please sign in to comment.