Skip to content

V1.0.3 #50

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,15 @@ jobs:
uv run version_bumper.py &&
version=$(uvx --from=toml-cli toml get --toml-path=pyproject.toml project.version) &&
uvx --from=toml-cli toml set --toml-path=pyproject.toml project.version $version.dev.$(date +%s)

- name: set timezone
run: |
TZ="Europe/London" &&
sudo ln -snf /usr/share/zoneinfo/$TZ /etc/localtime

- name: install linux deps
run: |
sudo apt-get -y install openssl graphviz nano texlive graphviz-dev unzip build-essential

- name: Install dependencies
run: |
Expand Down
10 changes: 6 additions & 4 deletions data-tidy.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@
"metadata": {},
"outputs": [],
"source": [
"from pathlib import Path\n",
"\n",
"df_tb = pd.read_parquet(Path(\"data/who_tb_cases.parquet\"))\n",
"df_tb = pd.read_parquet(\n",
" \"https://github.com/aeturrell/python4DS/raw/refs/heads/main/data/who_tb_cases.parquet\"\n",
")\n",
"df_tb.head()"
]
},
Expand Down Expand Up @@ -366,7 +366,9 @@
"metadata": {},
"outputs": [],
"source": [
"df_tb_cp = pd.read_parquet(Path(\"data/who_tb_case_and_pop.parquet\"))\n",
"df_tb_cp = pd.read_parquet(\n",
" \"https://github.com/aeturrell/python4DS/raw/refs/heads/main/data/who_tb_case_and_pop.parquet\"\n",
")\n",
"df_tb_cp.head()"
]
},
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "python4ds"
version = "1.0.2"
version = "1.0.3"
description = "The online book that teaches you how to use Python for data science."
readme = "README.md"
requires-python = ">=3.10.0"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading