Skip to content

Commit 3e8c8b9

Browse files
Merge pull request #64 from UBC-MDS/59-publish-docs-to-website-with-gh-pages-branch
modified file
2 parents c72fe0f + 52d7633 commit 3e8c8b9

File tree

7 files changed

+6
-38
lines changed

7 files changed

+6
-38
lines changed

.github/workflows/docs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ jobs:
3636
3737
- name: Build API documentation
3838
run: |
39-
cd docs
4039
quartodoc build
4140
4241
- name: Render and Publish

docs/index.qmd

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
---
22
title: root_finding
3-
jupyter:
4-
jupytext:
5-
text_representation:
6-
extension: .qmd
7-
format_name: quarto
8-
format_version: '1.0'
9-
jupytext_version: 1.16.7
10-
kernelspec:
11-
display_name: 522_proj
12-
language: python
13-
name: 522_proj
143
---
154

165
## Welcome to root_finding
@@ -53,4 +42,4 @@ print(f"Root: {root}") # Should be approximately 2.0
5342

5443
## GitHub Repository
5544

56-
Visit our [GitHub repository](https://github.com/Harrisonlee0530/root_finding) for source code and to report issues.
45+
Visit our [GitHub repository](https://github.com/Harrisonlee0530/root_finding) for source code and to report issues.

docs/objects.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/reference.qmd

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
---
22
title: API Reference
3-
jupyter:
4-
jupytext:
5-
text_representation:
6-
extension: .qmd
7-
format_name: quarto
8-
format_version: '1.0'
9-
jupytext_version: 1.16.7
10-
kernelspec:
11-
display_name: 522_proj
12-
language: python
13-
name: 522_proj
143
---
154

16-
{{< quartodoc-ref >}}
5+
{{< quartodoc-ref >}}

docs/reference/bisection.bisection.bisection.qmd

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,5 @@ bisection.bisection.bisection(f, xmin, xmax, tol=1e-09, max_iter=500)
5353

5454
>>> root = bisection(lambda x: 3*x**3 + 4*x**2 - 2*x - 2, 0, 2, max_iter = 500)
5555
>>> print(f"{root:.5f}")
56-
0.74827
56+
0.74827
57+

docs/tutorial.qmd

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,5 @@
11
---
22
title: Tutorial
3-
jupyter:
4-
jupytext:
5-
text_representation:
6-
extension: .qmd
7-
format_name: quarto
8-
format_version: '1.0'
9-
jupytext_version: 1.16.7
10-
kernelspec:
11-
display_name: 522_proj
12-
language: python
13-
name: 522_proj
143
---
154

165
## Getting Started with root_finding

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ dev = [
5959

6060
docs = [
6161
"quartodoc",
62+
"jupyter",
63+
"nbformat"
6264
]
6365

6466
build = [

0 commit comments

Comments
 (0)