Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

[compat]
CategoricalArrays = "0.10.0"
Compat = "3.45, 4.1"
Compat = "3.46, 4.2"
DataAPI = "1.10"
InvertedIndices = "1"
IteratorInterfaceExtensions = "0.1.1, 1"
Expand Down
8 changes: 7 additions & 1 deletion src/DataFrames.jl
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ export AbstractDataFrame,
select!,
select,
semijoin,
stack,
subset,
subset!,
transform,
Expand Down Expand Up @@ -142,6 +141,13 @@ else
using Compat: ComposedFunction
end

if VERSION >= v"1.9.0-DEV.1163"
import Base: stack
else
import Compat: stack
export stack
end

include("other/utils.jl")
include("other/index.jl")

Expand Down