Commit 323a4cd9 authored by Andrew Gibiansky's avatar Andrew Gibiansky

Fixes #283

parent 5ebe1573
......@@ -20,7 +20,7 @@ import Data.Char
import Data.List (nub, init, last, head, elemIndex)
import Data.List.Split
import Data.List.Split.Internals
import Data.Maybe
import Data.Maybe (fromJust)
import Data.String.Utils (strip, startswith, endswith, replace)
import qualified Data.String.Utils as StringUtils
import System.Environment (getEnv)
......@@ -315,4 +315,3 @@ completePathFilter includeFile includeDirectory left right = liftIO $ do
visible = filter (not . isHidden) suggestions
hidden = filter isHidden suggestions
return $ visible ++ hidden
......@@ -49,7 +49,7 @@ ipythonProfile = "haskell"
-- This must be the same as the file in the profile.tar.
-- The filename used is @profileVersionFile@.
profileVersion :: String
profileVersion = "0.3.0.5"
profileVersion = "0.4.2.0"
-- | Filename in the profile where the version ins kept.
profileVersionFile :: FilePath
......
......@@ -12,9 +12,6 @@ import Data.Text (pack)
import Data.Aeson
import Data.UUID.V4 (nextRandom)
import Text.Read as Read hiding (pfail, String)
-- We use an internal string representation because for the purposes of
-- IPython, it matters whether the letters are uppercase or lowercase and
-- whether the dashes are present in the correct locations. For the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment