Skip to content
Open
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
78 changes: 37 additions & 41 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,60 +1,56 @@
name = "QueryDuckDB"

Check notice on line 1 in Project.toml

View workflow job for this annotation

GitHub Actions / julia-ci / lint

environment_errors

Failed to resolve the test environment of package 'QueryDuckDB' at /home/runner/work/QueryDuckDB.jl/QueryDuckDB.jl: no registries have been installed. Cannot resolve the following packages. Missing-reference checks are degraded in that scope; enable debug logging for the full error.
uuid = "fb67597e-2b1e-4ffa-9078-014b5866405e"
version = "1.0.0-DEV"
version = "1.0.1-DEV"
authors = ["David Anthoff <anthoff@berkeley.edu>"]
uuid = "fb67597e-2b1e-4ffa-9078-014b5866405e"

[deps]
DBInterface = "a10d1c49-ce27-4219-8d33-6db1a4562965"
DataValues = "e7dc6d0d-1eca-5fa6-8ad6-5aecde8b7ea5"
DuckDB = "d2f5444f-75bc-4fdf-ac35-56f514c445e1"
IteratorInterfaceExtensions = "82899510-4779-5014-852e-03e436cf321d"
QueryableBackend = "0898d9ac-042b-5d31-8dcc-959fb3365f19"
TableTraits = "3783bdb8-4a98-5b6b-af9a-565f29a5fe9c"
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
[compat]
IteratorInterfaceExtensions = "1"
TableTraits = "1"
Query = "1.2"
DBInterface = "2"
DuckDB = "1"
QueryableBackend = "1.1"
ExcelFiles = "1"
ParquetFiles = "0.2, 1"
DataValues = "0.4.4, 0.5, 1"
CSVFiles = "1.0.2"
julia = "1.12"
Tables = "1"
FeatherFiles = "0.8, 1"

[weakdeps]
CSVFiles = "5d742f6a-9f54-50ce-8119-2520741973ca"
ExcelFiles = "89b67f3b-d1aa-5f6f-9ca4-282e8d98620d"
FeatherFiles = "b675d258-116a-5741-b937-b79f054b0542"
ParquetFiles = "46a55296-af5a-53b0-aaa0-97023b66127f"
CSVFiles = "5d742f6a-9f54-50ce-8119-2520741973ca"
FeatherFiles = "b675d258-116a-5741-b937-b79f054b0542"

[sources.ExcelFiles]
rev = "main"
url = "https://github.com/queryverse/ExcelFiles.jl"

[targets]
test = ["Test", "Query", "DataFrames", "Statistics", "TestItemRunner", "CSVFiles", "ExcelFiles", "FeatherFiles", "ParquetFiles", "Random"]

[extensions]
QueryDuckDBCSVFilesExt = "CSVFiles"
QueryDuckDBExcelFilesExt = "ExcelFiles"
QueryDuckDBFeatherFilesExt = "FeatherFiles"
QueryDuckDBParquetFilesExt = "ParquetFiles"

# TODO Remove once a fixed ExcelFiles version (> 1.0.0) is registered
[sources]
ExcelFiles = {url = "https://github.com/queryverse/ExcelFiles.jl", rev = "main"}

[compat]
CSVFiles = "1.0.2"
DBInterface = "2"
DataValues = "0.4.4, 0.5, 1"
DuckDB = "1"
ExcelFiles = "1"
FeatherFiles = "0.8, 1"
IteratorInterfaceExtensions = "1"
ParquetFiles = "0.2, 1"
QueryableBackend = "1.1"
# Test-only, but the tests drive the backend through Query's macros, so an
# older Query fails with UndefVarError rather than a resolution error.
Query = "1.2"
TableTraits = "1"
Tables = "1"
julia = "1.12"
QueryDuckDBFeatherFilesExt = "FeatherFiles"

[extras]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
# ExcelFiles must stay in extras while the [sources] pin exists — Pkg requires
# a sources entry to be listed in deps or extras; remove together with the pin.
ExcelFiles = "89b67f3b-d1aa-5f6f-9ca4-282e8d98620d"
Query = "1a8c2f83-1ff3-5112-b086-8aa67b057ba1"
ExcelFiles = "89b67f3b-d1aa-5f6f-9ca4-282e8d98620d"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[targets]
test = ["Test", "Query", "DataFrames", "Statistics", "TestItemRunner", "CSVFiles", "ExcelFiles", "FeatherFiles", "ParquetFiles", "Random"]
[deps]
DBInterface = "a10d1c49-ce27-4219-8d33-6db1a4562965"
IteratorInterfaceExtensions = "82899510-4779-5014-852e-03e436cf321d"
QueryableBackend = "0898d9ac-042b-5d31-8dcc-959fb3365f19"
DataValues = "e7dc6d0d-1eca-5fa6-8ad6-5aecde8b7ea5"
TableTraits = "3783bdb8-4a98-5b6b-af9a-565f29a5fe9c"
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
DuckDB = "d2f5444f-75bc-4fdf-ac35-56f514c445e1"
Loading