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

For ghc >= 9.4 use a fork of records-sop with relaxed bounds. #339

Merged
merged 2 commits into from
May 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 9 additions & 3 deletions cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ packages:
, squeal-postgresql-ltree
, squeal-postgresql-uuid-ossp

if impl(ghc >= 9.2)
if impl(ghc >= 9.4)
source-repository-package
type: git
location: https://github.com/kosmikus/records-sop.git
tag: abab99b4b870fce55e81dd03d4e41fb50502ca4e
location: https://github.com/space-vacuum/records-sop
tag: db2d052a1dfa6feed27c46db8dc401ff9e55685e

elif impl(ghc >= 9.2)
source-repository-package
type: git
location: https://github.com/kosmikus/records-sop
tag: abab99b4b870fce55e81dd03d4e41fb50502ca4e
3 changes: 2 additions & 1 deletion squeal-postgresql/src/Squeal/PostgreSQL/Session/Monad.hs
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@ typeclass `MonadPQ`.
, FlexibleInstances
, FunctionalDependencies
, GADTs
, PolyKinds
, MultiParamTypeClasses
, PolyKinds
, QuantifiedConstraints
, RankNTypes
, TypeApplications
, TypeFamilies
, TypeOperators
, UndecidableInstances
#-}

Expand Down