Skip to content

Commit ed27992

Browse files
committed
v1.0.3
1 parent f3f86e9 commit ed27992

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,15 @@ jobs:
5353
uv run version_bumper.py &&
5454
version=$(uvx --from=toml-cli toml get --toml-path=pyproject.toml project.version) &&
5555
uvx --from=toml-cli toml set --toml-path=pyproject.toml project.version $version.dev.$(date +%s)
56+
57+
- name: set timezone
58+
run: |
59+
TZ="Europe/London" &&
60+
sudo ln -snf /usr/share/zoneinfo/$TZ /etc/localtime
61+
62+
- name: install linux deps
63+
run: |
64+
sudo apt-get -y install openssl graphviz nano texlive graphviz-dev unzip build-essential
5665
5766
- name: Install dependencies
5867
run: |

data-tidy.ipynb

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,9 @@
155155
"metadata": {},
156156
"outputs": [],
157157
"source": [
158-
"from pathlib import Path\n",
159-
"\n",
160-
"df_tb = pd.read_parquet(Path(\"data/who_tb_cases.parquet\"))\n",
158+
"df_tb = pd.read_parquet(\n",
159+
" \"https://github.com/aeturrell/python4DS/raw/refs/heads/main/data/who_tb_cases.parquet\"\n",
160+
")\n",
161161
"df_tb.head()"
162162
]
163163
},
@@ -366,7 +366,9 @@
366366
"metadata": {},
367367
"outputs": [],
368368
"source": [
369-
"df_tb_cp = pd.read_parquet(Path(\"data/who_tb_case_and_pop.parquet\"))\n",
369+
"df_tb_cp = pd.read_parquet(\n",
370+
" \"https://github.com/aeturrell/python4DS/raw/refs/heads/main/data/who_tb_case_and_pop.parquet\"\n",
371+
")\n",
370372
"df_tb_cp.head()"
371373
]
372374
},

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)