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 LICENSE.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
IndexedTables = "6deec6e2-d858-57c5-ab9b-e6ca5bd20e43"

[compat]
Documenter = "~0.24"
Documenter = "1"
3 changes: 2 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion docs/src/sources.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ println(result)

# output

@NamedTuple{Name::String, Friendcount::Int64}[(Name = "John", Friendcount = 3)]
[(Name = "John", Friendcount = 3)]
```

## IndexedTables
Expand Down
4 changes: 0 additions & 4 deletions test/data.csv

This file was deleted.

1 change: 1 addition & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using TestItemRunner
using Documenter
using Query

include("test_core.jl")
include("test_dplyr-syntax.jl")
Expand Down
Loading