Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev upper bounds #273

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions rhine-bayes/rhine-bayes.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ library
other-modules:
Data.MonadicStreamFunction.Bayes
build-depends: base >= 4.11 && < 4.18
, transformers >= 0.5
, transformers ^>= 0.5
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not advisable because the ecosystem has moved to 0.6

, rhine == 1.2
, dunai ^>= 0.11
, log-domain >= 0.12
, log-domain ^>= 0.12
, monad-bayes ^>= 1.2
hs-source-dirs: src
default-language: Haskell2010
Expand Down Expand Up @@ -66,8 +66,8 @@ executable rhine-bayes-gloss
, monad-bayes
, transformers
, log-domain
, mmorph
, time
, mmorph ^>= 1.1
, time >= 1.8 && < 1.14
default-language: Haskell2010
default-extensions:
Arrows
Expand Down
14 changes: 7 additions & 7 deletions rhine-examples/rhine-examples.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ executable Ball
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: base >= 4.14 && < 4.18
, rhine == 1.2
, vector-sized >= 1.4
, random >= 1.1
, vector-sized ^>= 1.4
, random ^>= 1.1
default-language: Haskell2010
default-extensions:
Arrows
Expand All @@ -73,8 +73,8 @@ executable Periodic
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: base >= 4.14 && < 4.18
, rhine == 1.2
, transformers >= 0.5
, monad-schedule >= 0.1
, transformers >= 0.5 && < 0.6
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
, transformers >= 0.5 && < 0.6
, transformers >= 0.5 && < 0.7

, monad-schedule ^>= 0.1
default-language: Haskell2010
default-extensions:
TypeOperators
Expand All @@ -87,7 +87,7 @@ executable EventClock
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: base >= 4.14 && < 4.18
, rhine == 1.2
, random >= 1.1
, random ^>= 1.1
default-language: Haskell2010
default-extensions:
TypeOperators
Expand All @@ -112,8 +112,8 @@ executable RandomWalk
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: base >= 4.14 && < 4.18
, rhine == 1.2
, random >= 1.1
, simple-affine-space
, random ^>= 1.1
, simple-affine-space ^>= 0.2
default-language: Haskell2010
default-extensions:
TypeOperators
Expand Down
2 changes: 1 addition & 1 deletion rhine/rhine.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ library
build-depends:
, dunai ^>= 0.11
, transformers >= 0.5
, time >= 1.8
, time >= 1.8 && < 1.14
, free >= 5.1
, containers >= 0.5
, text >= 1.2 && < 2.1
Expand Down
Loading