Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/quick-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
- created

env:
GHC_FOR_QUICK_JOBS: 9.6.5
GHC_FOR_QUICK_JOBS: 9.10.3

jobs:
meta:
Expand Down
16 changes: 8 additions & 8 deletions cabal-dev-scripts/cabal-dev-scripts.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ executable gen-spdx
hs-source-dirs: src
ghc-options: -Wall
build-depends:
, aeson ^>=1.4.1.0 || ^>=1.5.2.0 || ^>=2.2.1.0
, base >=4.13 && <4.20
, aeson ^>=2.2.3.0
, base >=4.13 && <4.21
, bytestring
, containers
, Diff ^>=0.4
, lens ^>=4.18.1 || ^>=4.19.1 || ^>=5.0.1 || ^>=5.2
, optparse-applicative ^>=0.15.1.0 || ^>=0.16.0.0
, lens ^>=5.3
, optparse-applicative ^>=0.19.0.0
, text
, zinza ^>=0.2

Expand All @@ -34,13 +34,13 @@ executable gen-spdx-exc
hs-source-dirs: src
ghc-options: -Wall
build-depends:
, aeson ^>=1.4.1.0 || ^>=1.5.2.0 || ^>=2.2.1.0
, base >=4.13 && <4.20
, aeson ^>=2.2.3.0
, base >=4.13 && <4.21
, bytestring
, containers
, Diff ^>=0.4
, lens ^>=4.18.1 || ^>=4.19.1 || ^>=5.0.1 || ^>=5.2
, optparse-applicative ^>=0.15.1.0 || ^>=0.16.0.0
, lens ^>=5.3
, optparse-applicative ^>=0.19.0.0
, text
, zinza ^>=0.2

Expand Down
2 changes: 1 addition & 1 deletion cabal-dev-scripts/src/AnalyseImports.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{-# LANGUAGE LambdaCase #-}
module Main (main) where

import Control.Applicative (liftA2, many, (<|>))
import Control.Applicative
import Control.Monad (void)
import Data.Foldable (for_)
import Data.List (sortBy)
Expand Down
1 change: 0 additions & 1 deletion cabal-dev-scripts/src/Capture.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ module Capture (capture) where

import Language.Haskell.TH
import Language.Haskell.TH.Syntax (NameFlavour (..), Name (..))
import Control.Monad.IO.Class

import Data.Generics as SYB

Expand Down
Loading