From 9ad67e2d849404e093075d8364f593f522448aa7 Mon Sep 17 00:00:00 2001 From: Twan Koolen Date: Wed, 26 Sep 2018 14:47:13 -0400 Subject: [PATCH] Fully drop 0.7 support. --- REQUIRE | 3 +-- src/TypeSortedCollections.jl | 4 ---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/REQUIRE b/REQUIRE index 011810c..05b5ab4 100644 --- a/REQUIRE +++ b/REQUIRE @@ -1,2 +1 @@ -julia 0.7-alpha -Compat 0.33 # for Compat.Test +julia 1.0 diff --git a/src/TypeSortedCollections.jl b/src/TypeSortedCollections.jl index 95eae6c..0f84b9b 100644 --- a/src/TypeSortedCollections.jl +++ b/src/TypeSortedCollections.jl @@ -1,5 +1,3 @@ -VERSION < v"0.7.0-beta2.199" && __precompile__() - module TypeSortedCollections export @@ -8,8 +6,6 @@ export eltypes, vectortypes -using Compat - const TupleOfVectors = Tuple{Vararg{Vector{T} where T}} struct TypeSortedCollection{D<:TupleOfVectors, N}