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

Fixes #283

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