Skip to content

Commit 1113b33

Browse files
committed
v4.2.0a2
Added conditioned cross-tables. Updated dependencies. Fixed typos.
1 parent 388f6cf commit 1113b33

21 files changed

+2603
-2159
lines changed

build_docs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def main() -> None:
5555

5656
def build_api_docs(ck_package_dir: Path, api_docs_dir: Path) -> None:
5757
"""
58-
Instantiate Markdown documents from found templates.
58+
Build the API documentation from docstring comments.
5959
6060
Args:
6161
ck_package_dir: where to find the CK Python packages.
@@ -71,7 +71,7 @@ def run_jupyter_book() -> None:
7171
"""
7272
Run the Jupyter Book command to build the documentation.
7373
"""
74-
cmd: List[str] = ['jupyter-book', 'build', '-qq', 'docs']
74+
cmd: List[str] = ['jupyter-book', 'build', '--quiet', 'docs']
7575
subprocess.run(cmd, capture_output=False, check=True)
7676

7777

docs/1_01_front_matter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# _front matter_
22

3-
Compiled Knowledge version 4.2.0a1, built 2025-08-11 07:41:34 (AUS Eastern Standard Time).
3+
Compiled Knowledge version 4.2.0a2, built 2025-11-04 12:28:54 (AUS Eastern Summer Time).
44
A pre-release version of 4.2.0 that includes enhancements for `synthorus`.
55

66
These pages form a reference for the software known as Compiled Knowledge, abbreviated as CK.

docs/1_03_installation.ipynb

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
3535
"start_time": "2025-07-04T02:19:07.357589Z"
3636
},
3737
"execution": {
38-
"iopub.execute_input": "2025-08-10T21:41:49.182955Z",
39-
"iopub.status.busy": "2025-08-10T21:41:49.182955Z",
40-
"iopub.status.idle": "2025-08-10T21:41:49.300596Z",
41-
"shell.execute_reply": "2025-08-10T21:41:49.300584Z"
38+
"iopub.execute_input": "2025-11-04T01:29:04.261614Z",
39+
"iopub.status.busy": "2025-11-04T01:29:04.261614Z",
40+
"iopub.status.idle": "2025-11-04T01:29:04.385012Z",
41+
"shell.execute_reply": "2025-11-04T01:29:04.385012Z"
4242
}
4343
},
4444
"outputs": [
@@ -124,10 +124,10 @@
124124
"start_time": "2025-07-04T02:29:50.795493Z"
125125
},
126126
"execution": {
127-
"iopub.execute_input": "2025-08-10T21:41:49.330787Z",
128-
"iopub.status.busy": "2025-08-10T21:41:49.330787Z",
129-
"iopub.status.idle": "2025-08-10T21:41:49.628664Z",
130-
"shell.execute_reply": "2025-08-10T21:41:49.628664Z"
127+
"iopub.execute_input": "2025-11-04T01:29:04.413487Z",
128+
"iopub.status.busy": "2025-11-04T01:29:04.413487Z",
129+
"iopub.status.idle": "2025-11-04T01:29:04.720103Z",
130+
"shell.execute_reply": "2025-11-04T01:29:04.720103Z"
131131
}
132132
},
133133
"outputs": [

docs/2_01_background.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@
211211
"\n",
212212
"## Random variables\n",
213213
"\n",
214-
"All probabilistic models start with a set of random variables. These are variables that represent something in the world (real or hypothetical) that we want to represent in our model.\n",
214+
"All probabilistic models start with a set of random variables. These are variables that represent something in the world (real or hypothetical) that we want to represent in the model.\n",
215215
"\n",
216216
"Each random variable has a set of possible values (sometimes call states of the random variable).\n",
217217
"\n",

0 commit comments

Comments
 (0)