Skip to content

Commit

Permalink
revert filepath lower bound updates (#573)
Browse files Browse the repository at this point in the history
  • Loading branch information
shayne-fletcher authored Dec 5, 2024
1 parent 3311818 commit 0300c19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ghc-lib-gen/src/Ghclibgen.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1226,14 +1226,14 @@ commonBuildDepends ghcFlavor =
"containers >= 0.6.2.1 && < 0.8",
"bytestring >= 0.11.4 && < 0.13",
"time >= 1.4 && < 1.15",
"filepath >= 1.5 && < 1.6"
"filepath >= 1 && < 1.6"
]
| ghcSeries ghcFlavor >= GHC_9_8 =
[ "ghc-prim > 0.2 && < 0.12",
"containers >= 0.6.2.1 && < 0.8",
"bytestring >= 0.11.4 && < 0.13",
"time >= 1.4 && < 1.15",
"filepath >= 1.5 && < 1.6"
"filepath >= 1 && < 1.6"
]
| ghcSeries ghcFlavor >= GHC_9_6 =
[ "ghc-prim > 0.2 && < 0.11",
Expand Down

0 comments on commit 0300c19

Please sign in to comment.