Skip to content

Commit 5321e98

Browse files
authored
Merge pull request #50 from aeturrell/v1.0.3
V1.0.3
2 parents f3f86e9 + 0af968a commit 5321e98

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
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
},

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "python4ds"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
description = "The online book that teaches you how to use Python for data science."
55
readme = "README.md"
66
requires-python = ">=3.10.0"

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)