Skip to content

Commit

Permalink
Merge pull request #1 from tlnagy/fix-iteration-dep
Browse files Browse the repository at this point in the history
switch to using new Base.Iterators module on v0.6
  • Loading branch information
tlnagy authored Nov 23, 2016
2 parents 16a1f7b + 0581761 commit c4ca013
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
julia 0.4
Compat
Iterators
4 changes: 3 additions & 1 deletion src/Showoff.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ VERSION >= v"0.4.0-dev+6641" && __precompile__()
module Showoff

using Compat
using Iterators: drop
if VERSION >= v"0.6.0-dev.1015"
import Base.Iterators: drop
end

export showoff

Expand Down

0 comments on commit c4ca013

Please sign in to comment.