diff --git a/primer-api/src/Primer/API.hs b/primer-api/src/Primer/API.hs index d01e9a77a..ed2c9b522 100644 --- a/primer-api/src/Primer/API.hs +++ b/primer-api/src/Primer/API.hs @@ -5,10 +5,6 @@ {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} --- Temporary workaround for GHC 9.6: --- https://gitlab.haskell.org/ghc/ghc/-/issues/23143 -{-# OPTIONS -Wno-redundant-constraints #-} - -- | The Primer API. -- -- This module defines the Primer API, which is collection of diff --git a/primer-api/test/Tests/Database.hs b/primer-api/test/Tests/Database.hs index cb8f6af22..a3d4ca30d 100644 --- a/primer-api/test/Tests/Database.hs +++ b/primer-api/test/Tests/Database.hs @@ -1,9 +1,5 @@ {-# LANGUAGE GeneralizedNewtypeDeriving #-} --- Temporary workaround for GHC 9.6: --- https://gitlab.haskell.org/ghc/ghc/-/issues/23143 -{-# OPTIONS -Wno-redundant-constraints #-} - module Tests.Database where import Foreword diff --git a/primer-selda/src/Primer/Database/Selda/SQLite.hs b/primer-selda/src/Primer/Database/Selda/SQLite.hs index 16ead6782..b5c2a4a82 100644 --- a/primer-selda/src/Primer/Database/Selda/SQLite.hs +++ b/primer-selda/src/Primer/Database/Selda/SQLite.hs @@ -1,10 +1,6 @@ {-# LANGUAGE OverloadedLabels #-} {-# LANGUAGE UndecidableInstances #-} --- Temporary workaround for GHC 9.6: --- https://gitlab.haskell.org/ghc/ghc/-/issues/23143 -{-# OPTIONS -Wno-redundant-constraints #-} - module Primer.Database.Selda.SQLite ( -- * The "Database.Selda.SQLite" database adapter. MonadSeldaSQLiteDb, diff --git a/primer/src/Primer/App.hs b/primer/src/Primer/App.hs index 6096bbe52..136cbe579 100644 --- a/primer/src/Primer/App.hs +++ b/primer/src/Primer/App.hs @@ -6,10 +6,6 @@ {-# LANGUAGE UndecidableInstances #-} {-# LANGUAGE ViewPatterns #-} --- Temporary workaround for GHC 9.6: --- https://gitlab.haskell.org/ghc/ghc/-/issues/23143 -{-# OPTIONS -Wno-redundant-constraints #-} - -- This module defines the high level application functions. module Primer.App ( diff --git a/primer/src/Primer/Database.hs b/primer/src/Primer/Database.hs index 55b945f92..1b65e06ca 100644 --- a/primer/src/Primer/Database.hs +++ b/primer/src/Primer/Database.hs @@ -1,10 +1,6 @@ {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE OverloadedLabels #-} --- Temporary workaround for GHC 9.6: --- https://gitlab.haskell.org/ghc/ghc/-/issues/23143 -{-# OPTIONS -Wno-redundant-constraints #-} - module Primer.Database ( SessionId, -- 'SessionName' is abstract. Do not export its constructors. diff --git a/primer/test/Tests/Database.hs b/primer/test/Tests/Database.hs index b3c567dba..238c53a95 100644 --- a/primer/test/Tests/Database.hs +++ b/primer/test/Tests/Database.hs @@ -1,9 +1,5 @@ {-# LANGUAGE GeneralizedNewtypeDeriving #-} --- Temporary workaround for GHC 9.6: --- https://gitlab.haskell.org/ghc/ghc/-/issues/23143 -{-# OPTIONS -Wno-redundant-constraints #-} - module Tests.Database where import Foreword