remove upper bounds (#171)
* remove upper bounds * work with stackage nightly * Add nightly build
This commit is contained in:
parent
3fcc965de7
commit
951bb21c1b
@ -21,6 +21,11 @@ env:
|
|||||||
- GHCVER=8.2
|
- GHCVER=8.2
|
||||||
- GHCVER=8.4
|
- GHCVER=8.4
|
||||||
- GHCVER=8.6
|
- GHCVER=8.6
|
||||||
|
- GHCVER=nightly
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
allow_failures:
|
||||||
|
- GHCVER=nightly
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- export STACK_YAML=stack-$GHCVER.yaml
|
- export STACK_YAML=stack-$GHCVER.yaml
|
||||||
|
|||||||
@ -95,7 +95,7 @@ test-suite mysql
|
|||||||
, resourcet >=1.2
|
, resourcet >=1.2
|
||||||
, tagged >=0.2
|
, tagged >=0.2
|
||||||
, text >=0.11 && <1.3
|
, text >=0.11 && <1.3
|
||||||
, time >=1.5.0.1 && <=1.8.0.2
|
, time
|
||||||
, transformers >=0.2
|
, transformers >=0.2
|
||||||
, unliftio
|
, unliftio
|
||||||
, unordered-containers >=0.2
|
, unordered-containers >=0.2
|
||||||
@ -132,7 +132,7 @@ test-suite postgresql
|
|||||||
, resourcet >=1.2
|
, resourcet >=1.2
|
||||||
, tagged >=0.2
|
, tagged >=0.2
|
||||||
, text >=0.11 && <1.3
|
, text >=0.11 && <1.3
|
||||||
, time >=1.5.0.1 && <=1.8.0.2
|
, time
|
||||||
, transformers >=0.2
|
, transformers >=0.2
|
||||||
, unliftio
|
, unliftio
|
||||||
, unordered-containers >=0.2
|
, unordered-containers >=0.2
|
||||||
@ -166,7 +166,7 @@ test-suite sqlite
|
|||||||
, resourcet >=1.2
|
, resourcet >=1.2
|
||||||
, tagged >=0.2
|
, tagged >=0.2
|
||||||
, text >=0.11 && <1.3
|
, text >=0.11 && <1.3
|
||||||
, time >=1.5.0.1 && <=1.8.0.2
|
, time
|
||||||
, transformers >=0.2
|
, transformers >=0.2
|
||||||
, unliftio
|
, unliftio
|
||||||
, unordered-containers >=0.2
|
, unordered-containers >=0.2
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{-# LANGUAGE FlexibleContexts #-}
|
{-# LANGUAGE DerivingStrategies, FlexibleContexts #-}
|
||||||
{-# LANGUAGE FlexibleInstances #-}
|
{-# LANGUAGE FlexibleInstances #-}
|
||||||
{-# LANGUAGE GADTs #-}
|
{-# LANGUAGE GADTs #-}
|
||||||
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
|
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
|
||||||
|
|||||||
4
stack-nightly.yaml
Normal file
4
stack-nightly.yaml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
resolver: nightly-2020-01-24
|
||||||
|
packages:
|
||||||
|
- '.'
|
||||||
|
- 'examples'
|
||||||
12
stack-nightly.yaml.lock
Normal file
12
stack-nightly.yaml.lock
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# This file was autogenerated by Stack.
|
||||||
|
# You should not edit this file by hand.
|
||||||
|
# For more information, please see the documentation at:
|
||||||
|
# https://docs.haskellstack.org/en/stable/lock_files
|
||||||
|
|
||||||
|
packages: []
|
||||||
|
snapshots:
|
||||||
|
- completed:
|
||||||
|
size: 467884
|
||||||
|
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/nightly/2020/1/24.yaml
|
||||||
|
sha256: 55c1a4fc9222bc3b8cf91461f38e2641da675a7296f06528f47340c19d0c6e85
|
||||||
|
original: nightly-2020-01-24
|
||||||
@ -1,7 +1,7 @@
|
|||||||
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
|
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
|
||||||
{-# OPTIONS_GHC -fno-warn-deprecations #-}
|
{-# OPTIONS_GHC -fno-warn-deprecations #-}
|
||||||
{-# LANGUAGE ConstraintKinds
|
{-# LANGUAGE ConstraintKinds
|
||||||
, CPP
|
, CPP, DerivingStrategies, StandaloneDeriving
|
||||||
, TypeApplications
|
, TypeApplications
|
||||||
, PartialTypeSignatures
|
, PartialTypeSignatures
|
||||||
, UndecidableInstances
|
, UndecidableInstances
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{-# LANGUAGE FlexibleContexts
|
{-# LANGUAGE FlexibleContexts
|
||||||
, GADTs
|
, GADTs
|
||||||
, GeneralizedNewtypeDeriving
|
, GeneralizedNewtypeDeriving
|
||||||
|
, DerivingStrategies
|
||||||
|
, StandaloneDeriving
|
||||||
, MultiParamTypeClasses
|
, MultiParamTypeClasses
|
||||||
, OverloadedStrings
|
, OverloadedStrings
|
||||||
, QuasiQuotes
|
, QuasiQuotes
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{-# LANGUAGE UndecidableInstances #-}
|
{-# LANGUAGE UndecidableInstances, DerivingStrategies #-}
|
||||||
module Lib where
|
module Lib where
|
||||||
|
|
||||||
import Control.Monad.IO.Class (MonadIO)
|
import Control.Monad.IO.Class (MonadIO)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user