From 2fc716af4f63a9beaf43e6d34c068df143262257 Mon Sep 17 00:00:00 2001 From: Jacob Tomlinson Date: Tue, 14 Oct 2025 13:57:35 +0100 Subject: [PATCH 1/5] Fix sphinx 8 warnings --- conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf.py b/conf.py index 0b854ad..8f6d480 100644 --- a/conf.py +++ b/conf.py @@ -75,7 +75,7 @@ # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = "en" # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. @@ -104,7 +104,7 @@ # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ["_static"] +html_static_path = [] # Custom sidebar templates, must be a dictionary that maps document names # to template names. From 5e1ddc43c671c29008089eafbbbd9eb5b4fb81a7 Mon Sep 17 00:00:00 2001 From: Jacob Tomlinson Date: Tue, 14 Oct 2025 14:15:46 +0100 Subject: [PATCH 2/5] Bump mamba action --- .github/workflows/ci-build.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 05208f4..4b91d61 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -9,9 +9,8 @@ jobs: uses: actions/checkout@v2 - name: Setup Conda Environment - uses: conda-incubator/setup-miniconda@v2 + uses: conda-incubator/setup-miniconda@v3 with: - miniconda-version: "latest" mamba-version: "*" environment-file: binder/environment.yml activate-environment: dask-tutorial From 03ec1c41586125b6089a17e784a27832138472d4 Mon Sep 17 00:00:00 2001 From: Jacob Tomlinson Date: Tue, 4 Nov 2025 14:40:08 +0000 Subject: [PATCH 3/5] Update overview example to use Coiled S3 bucket --- 00_overview.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/00_overview.ipynb b/00_overview.ipynb index f3ac0ce..a155fae 100644 --- a/00_overview.ipynb +++ b/00_overview.ipynb @@ -53,7 +53,7 @@ "outputs": [], "source": [ "ddf = dd.read_parquet(\n", - " \"s3://dask-data/nyc-taxi/nyc-2015.parquet/part.*.parquet\",\n", + " \"s3://coiled-data/uber/\",\n", " columns=[\"passenger_count\", \"tip_amount\"],\n", " storage_options={\"anon\": True},\n", ")" From d9a2e677bf2889371aa44d4c978c0a8ce584f651 Mon Sep 17 00:00:00 2001 From: Jacob Tomlinson Date: Tue, 4 Nov 2025 14:52:13 +0000 Subject: [PATCH 4/5] Fix example --- 00_overview.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/00_overview.ipynb b/00_overview.ipynb index a155fae..32fa732 100644 --- a/00_overview.ipynb +++ b/00_overview.ipynb @@ -54,7 +54,7 @@ "source": [ "ddf = dd.read_parquet(\n", " \"s3://coiled-data/uber/\",\n", - " columns=[\"passenger_count\", \"tip_amount\"],\n", + " columns=[\"tips\"],\n", " storage_options={\"anon\": True},\n", ")" ] @@ -65,7 +65,7 @@ "metadata": {}, "outputs": [], "source": [ - "result = ddf.groupby(\"passenger_count\").tip_amount.mean().compute()\n", + "result = ddf[\"tips\"][ddf[\"tips\"] > 0].mean().compute()\n", "result" ] }, From ea69871590d285b1d3efe2de18fc6283867c5449 Mon Sep 17 00:00:00 2001 From: Jacob Tomlinson Date: Tue, 4 Nov 2025 15:27:20 +0000 Subject: [PATCH 5/5] Add missing cryptography dependency --- binder/environment.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/binder/environment.yml b/binder/environment.yml index e224205..5c9db52 100644 --- a/binder/environment.yml +++ b/binder/environment.yml @@ -10,6 +10,7 @@ dependencies: - dask=2023.1.0 - dask-labextension - distributed=2023.1.0 + - cryptography - matplotlib - pandas=1.5 - pip