From 7885fca53a96b591a6856088e65262f7a6157227 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Mon, 22 Jan 2024 07:30:40 -0500 Subject: [PATCH] Allow building with filepath-1.5.* `filepath-1.5.0.0` removes the `OsString` modules. This does not affect `hsc2hs`'s use of `filepath`, and `hsc2hs`'s test suite passes without issues when building with `filepath-1.5.0.0`. --- hsc2hs.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hsc2hs.cabal b/hsc2hs.cabal index ac30516..9bea92e 100644 --- a/hsc2hs.cabal +++ b/hsc2hs.cabal @@ -83,7 +83,7 @@ Executable hsc2hs Build-Depends: base >= 4.3.0 && < 4.20, containers >= 0.4.0 && < 0.8, directory >= 1.1.0 && < 1.4, - filepath >= 1.2.0 && < 1.5, + filepath >= 1.2.0 && < 1.6, process >= 1.1.0 && < 1.7 if os(windows)