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
6 changes: 2 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ SymbolicIndexingInterface = "2efcf032-c050-4f8e-a9bb-153293bab1f5"
[weakdeps]
FastBroadcast = "7034ab61-46d4-4ed7-9d0f-46aef9175898"
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
IteratorInterfaceExtensions = "82899510-4779-5014-852e-03e436cf321d"
KernelAbstractions = "63c18a36-062a-441e-b654-da1e3ab1ce7c"
Measurements = "eff96d63-e80a-5855-80a2-b1b0885c5ab7"
MonteCarloMeasurements = "0987c9cc-fe09-11e8-30f0-b96dd679fdca"
Expand All @@ -37,7 +36,7 @@ RecursiveArrayToolsMonteCarloMeasurementsExt = "MonteCarloMeasurements"
RecursiveArrayToolsReverseDiffExt = ["ReverseDiff", "Zygote"]
RecursiveArrayToolsSparseArraysExt = ["SparseArrays"]
RecursiveArrayToolsStructArraysExt = "StructArrays"
RecursiveArrayToolsTablesExt = ["Tables", "IteratorInterfaceExtensions"]
RecursiveArrayToolsTablesExt = ["Tables"]
RecursiveArrayToolsTrackerExt = "Tracker"
RecursiveArrayToolsZygoteExt = "Zygote"

Expand All @@ -49,7 +48,6 @@ DocStringExtensions = "0.9"
FastBroadcast = "0.2.8, 0.3"
ForwardDiff = "0.10.19, 1"
GPUArraysCore = "0.1.1, 0.2"
IteratorInterfaceExtensions = "1"
KernelAbstractions = "0.9.36"
LinearAlgebra = "1.10"
Measurements = "2.3"
Expand Down Expand Up @@ -95,4 +93,4 @@ Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"

[targets]
test = ["Aqua", "FastBroadcast", "ForwardDiff", "IteratorInterfaceExtensions", "KernelAbstractions", "Measurements", "NLsolve", "Pkg", "Random", "SafeTestsets", "SciMLBase", "SparseArrays", "StaticArrays", "StructArrays", "Tables", "Test", "Unitful", "Zygote"]
test = ["Aqua", "FastBroadcast", "ForwardDiff", "KernelAbstractions", "Measurements", "NLsolve", "Pkg", "Random", "SafeTestsets", "SciMLBase", "SparseArrays", "StaticArrays", "StructArrays", "Tables", "Test", "Unitful", "Zygote"]
2 changes: 1 addition & 1 deletion ext/RecursiveArrayToolsTablesExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module RecursiveArrayToolsTablesExt

import RecursiveArrayTools: AbstractDiffEqArray, variable_symbols
import Tables
import IteratorInterfaceExtensions
import Tables: IteratorInterfaceExtensions

# Tables traits for AbstractDiffEqArray
Tables.istable(::Type{<:AbstractDiffEqArray}) = true
Expand Down
3 changes: 1 addition & 2 deletions test/tabletraits.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using RecursiveArrayTools, Random, Test, Tables, IteratorInterfaceExtensions

using RecursiveArrayTools, Random, Test, Tables
include("testutils.jl")

Random.seed!(1234)
Expand Down
3 changes: 2 additions & 1 deletion test/testutils.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using RecursiveArrayTools
using Tables, IteratorInterfaceExtensions
using Tables
using Tables: IteratorInterfaceExtensions

# Test Tables interface with row access + IteratorInterfaceExtensions for QueryVerse
# (see https://tables.juliadata.org/stable/#Testing-Tables.jl-Implementations)
Expand Down
Loading