diff --git a/int-like.cabal b/int-like.cabal
--- a/int-like.cabal
+++ b/int-like.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           int-like
-version:        0.1.3
+version:        0.1.4
 synopsis:       Newtype wrappers over IntSet and IntMap
 description:    Please see the README on GitHub at <https://github.com/ejconlon/int-like#readme>
 category:       Data Structures
@@ -66,51 +66,6 @@
       algebraic-graphs ==0.7.*
     , base >=4.12 && <5
     , containers ==0.6.*
-    , deepseq ==1.4.*
-    , hashable >=1.3 && <1.5
-  default-language: Haskell2010
-
-test-suite int-like-test
-  type: exitcode-stdio-1.0
-  main-is: Main.hs
-  other-modules:
-      Paths_int_like
-  hs-source-dirs:
-      test
-  default-extensions:
-      BangPatterns
-      ConstraintKinds
-      DeriveAnyClass
-      DeriveFunctor
-      DeriveFoldable
-      DeriveGeneric
-      DeriveTraversable
-      DerivingStrategies
-      DerivingVia
-      FlexibleContexts
-      FlexibleInstances
-      FunctionalDependencies
-      GADTs
-      GeneralizedNewtypeDeriving
-      LambdaCase
-      KindSignatures
-      MultiParamTypeClasses
-      Rank2Types
-      ScopedTypeVariables
-      StandaloneDeriving
-      TemplateHaskell
-      TupleSections
-      TypeApplications
-      TypeOperators
-      TypeFamilies
-  ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints -fno-warn-unused-top-binds -fwrite-ide-info -hiedir=.hie -threaded -rtsopts -with-rtsopts=-N
-  build-depends:
-      algebraic-graphs ==0.7.*
-    , base >=4.12 && <5
-    , containers ==0.6.*
-    , deepseq ==1.4.*
+    , deepseq >=1.4 && <1.6
     , hashable >=1.3 && <1.5
-    , int-like
-    , tasty
-    , tasty-hunit
   default-language: Haskell2010
diff --git a/test/Main.hs b/test/Main.hs
deleted file mode 100644
--- a/test/Main.hs
+++ /dev/null
@@ -1,14 +0,0 @@
-module Main (main) where
-
-import Test.Tasty (TestTree, defaultMain, testGroup)
-import Test.Tasty.HUnit (testCase, (@?=))
-
-testSimple :: TestTree
-testSimple = testCase "simple" $ do
-  let actual = (1 + 1) :: Int
-      expected = 2 :: Int
-  actual @?= expected
-
--- TODO uh, write some tests!?!
-main :: IO ()
-main = defaultMain (testGroup "IntLike" [testSimple])
