Skip to content

Commit 3d8b999

Browse files
committed
Fix a few failing datasets
1 parent 032d344 commit 3d8b999

4 files changed

Lines changed: 8 additions & 6 deletions

File tree

deny.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ deny = [
3838
# { name = "hyper", deny-multiple-versions = true },
3939
{ name = "object_store", deny-multiple-versions = true },
4040
{ name = "parquet", deny-multiple-versions = true },
41-
# TODO: waiting for qdrant-client and opentelemetry to update
41+
# TODO: waiting for qdrant-client to update
4242
# { name = "prost", deny-multiple-versions = true },
4343
{ name = "reqwest", deny-multiple-versions = true },
4444
# TODO: Too many versions between alloy, aws-sdk, reqwest etc.
4545
# { name = "rustls", deny-multiple-versions = true },
4646
{ name = "sqlx", deny-multiple-versions = true },
4747
{ name = "tokio", deny-multiple-versions = true },
48-
# TODO: waiting for qdrant-client and opentelemetry to update
48+
# TODO: waiting for qdrant-client to update
4949
# { name = "tonic", deny-multiple-versions = true },
5050
]
5151

@@ -120,5 +120,5 @@ ignore = [
120120
"RUSTSEC-2025-0134",
121121
# Security violation (ruint)
122122
# https://rustsec.org/advisories/RUSTSEC-2025-0137
123-
"RUSTSEC-2025-0137",
123+
"RUSTSEC-2025-0137",
124124
]

examples/covid/british-columbia.case-details.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ content:
1010
# Where to fetch the data from.
1111
fetch:
1212
kind: Url
13-
url: http://www.bccdc.ca/Health-Info-Site/Documents/BCCDC_COVID19_Dashboard_Case_Details.csv
13+
url: https://www.bccdc.ca/Health-Info-Site/Documents/BCCDC_COVID19_Dashboard_Case_Details.csv
1414
# How to interpret the data.
1515
read:
1616
kind: Csv

examples/housing_prices/ca.vancouver.opendata.property.tax-reports.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ content:
4343
- TAX_LEVY STRING
4444
- NEIGHBOURHOOD_CODE STRING
4545
- REPORT_YEAR STRING
46+
- NOTE STRING
4647
preprocess:
4748
kind: Sql
4849
engine: datafusion
@@ -76,7 +77,8 @@ content:
7677
BIG_IMPROVEMENT_YEAR,
7778
TAX_LEVY,
7879
NEIGHBOURHOOD_CODE,
79-
cast(concat(REPORT_YEAR, '-01-01') as date) as REPORT_YEAR
80+
cast(concat(REPORT_YEAR, '-01-01') as date) as REPORT_YEAR,
81+
NOTE
8082
from input
8183
merge:
8284
kind: Ledger

examples/reth-vs-snp500/co.alphavantage.tickers.daily.spy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ content:
1111
url: "https://www.alphavantage.co/query\
1212
?function=TIME_SERIES_DAILY\
1313
&symbol=SPY\
14-
&outputsize=full\
14+
&outputsize=compact\
1515
&datatype=csv\
1616
&apikey=${{ env.ALPHA_VANTAGE_API_KEY }}"
1717
read:

0 commit comments

Comments
 (0)