diff --git a/LICENSE.md b/LICENSE.md index 0c2d1a1..ffb12d9 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ The Query.jl package is licensed under the MIT "Expat" License: -> Copyright (c) 2015-2019: David Anthoff. +> Copyright (c) 2015-2026: David Anthoff. > > Permission is hereby granted, free of charge, to any person obtaining > a copy of this software and associated documentation files (the diff --git a/Project.toml b/Project.toml index 095f934..d8d2e9e 100644 --- a/Project.toml +++ b/Project.toml @@ -23,7 +23,7 @@ IndexedTables = "6deec6e2-d858-57c5-ab9b-e6ca5bd20e43" IterableTables = "0.8.2, 0.9, 0.10, 0.11, 1" julia = "1.10" QueryOperators = "1" -DataValues = "0.4.4" +DataValues = "0.4.4, 0.5, 1" MacroTools = "0.4.4, 0.5" [targets] diff --git a/README.md b/README.md index c324851..121da69 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,8 @@ # Query [![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active) +[![Build Status](https://github.com/queryverse/Query.jl/actions/workflows/juliaci.yml/badge.svg?branch=main)](https://github.com/queryverse/Query.jl/actions/workflows/juliaci.yml) [![](https://img.shields.io/badge/docs-stable-blue.svg)](https://queryverse.github.io/Query.jl/stable) -[![Build Status](https://travis-ci.org/queryverse/Query.jl.svg?branch=master)](https://travis-ci.org/queryverse/Query.jl) -[![Build status](https://ci.appveyor.com/api/projects/status/wuo030ogcyrchkde/branch/master?svg=true)](https://ci.appveyor.com/project/queryverse/query-jl/branch/master) [![codecov](https://codecov.io/gh/queryverse/Query.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/queryverse/Query.jl) ## Overview diff --git a/docs/Project.toml b/docs/Project.toml index 2dc8442..00232a0 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -6,4 +6,4 @@ DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" IndexedTables = "6deec6e2-d858-57c5-ab9b-e6ca5bd20e43" [compat] -Documenter = "~0.24" +Documenter = "1" diff --git a/docs/make.jl b/docs/make.jl index a3739b1..2c40378 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -3,7 +3,8 @@ using Documenter, Query, DataFrames makedocs( modules = [Query], sitename = "Query.jl", - analytics="UA-132838790-1", + format = Documenter.HTML(analytics = "UA-132838790-1"), + warnonly = [:missing_docs], pages = [ "Introduction" => "index.md", "Getting Started" => "gettingstarted.md", diff --git a/docs/src/sources.md b/docs/src/sources.md index b968189..0c92096 100644 --- a/docs/src/sources.md +++ b/docs/src/sources.md @@ -88,7 +88,7 @@ println(result) # output -@NamedTuple{Name::String, Friendcount::Int64}[(Name = "John", Friendcount = 3)] +[(Name = "John", Friendcount = 3)] ``` ## IndexedTables diff --git a/test/data.csv b/test/data.csv deleted file mode 100644 index 1b0342e..0000000 --- a/test/data.csv +++ /dev/null @@ -1,4 +0,0 @@ -Name,Age,Children -John, 38., 3 -Sally, 23., 1 -Kirk, 64., 5 diff --git a/test/runtests.jl b/test/runtests.jl index 3eaf905..0539c0c 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,5 +1,6 @@ using TestItemRunner using Documenter +using Query include("test_core.jl") include("test_dplyr-syntax.jl")