Skip to content

Commit 419c087

Browse files
Fix sphinx 8 warnings (#279)
1 parent 3157ed8 commit 419c087

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci-build.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@ jobs:
99
uses: actions/checkout@v2
1010

1111
- name: Setup Conda Environment
12-
uses: conda-incubator/setup-miniconda@v2
12+
uses: conda-incubator/setup-miniconda@v3
1313
with:
14-
miniconda-version: "latest"
1514
mamba-version: "*"
1615
environment-file: binder/environment.yml
1716
activate-environment: dask-tutorial

00_overview.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
"outputs": [],
5454
"source": [
5555
"ddf = dd.read_parquet(\n",
56-
" \"s3://dask-data/nyc-taxi/nyc-2015.parquet/part.*.parquet\",\n",
57-
" columns=[\"passenger_count\", \"tip_amount\"],\n",
56+
" \"s3://coiled-data/uber/\",\n",
57+
" columns=[\"tips\"],\n",
5858
" storage_options={\"anon\": True},\n",
5959
")"
6060
]
@@ -65,7 +65,7 @@
6565
"metadata": {},
6666
"outputs": [],
6767
"source": [
68-
"result = ddf.groupby(\"passenger_count\").tip_amount.mean().compute()\n",
68+
"result = ddf[\"tips\"][ddf[\"tips\"] > 0].mean().compute()\n",
6969
"result"
7070
]
7171
},

binder/environment.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ dependencies:
1010
- dask=2023.1.0
1111
- dask-labextension
1212
- distributed=2023.1.0
13+
- cryptography
1314
- matplotlib
1415
- pandas=1.5
1516
- pip

conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
#
7676
# This is also used if you do content translation via gettext catalogs.
7777
# Usually you set "language" from the command line for these cases.
78-
language = None
78+
language = "en"
7979

8080
# List of patterns, relative to source directory, that match files and
8181
# directories to ignore when looking for source files.
@@ -104,7 +104,7 @@
104104
# Add any paths that contain custom static files (such as style sheets) here,
105105
# relative to this directory. They are copied after the builtin static files,
106106
# so a file named "default.css" will overwrite the builtin "default.css".
107-
html_static_path = ["_static"]
107+
html_static_path = []
108108

109109
# Custom sidebar templates, must be a dictionary that maps document names
110110
# to template names.

0 commit comments

Comments
 (0)