Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- uses: actions/checkout@v5

- name: Prepare Node environment
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: "lts/*"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"
python-version: "3.12"

- name: Install poetry
run: curl -sSL https://install.python-poetry.org | python3 -
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,13 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
- "3.14.0-rc.3"
fail-fast: false

steps:
- uses: actions/checkout@v5
- name: Install Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand Down
6 changes: 5 additions & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,15 @@ const config = {
url: site_url,
baseUrl: "/arpespythontools/", // must have a trailing "/"
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
favicon: "img/favicon.png",
organizationName: "pranabdas", // Usually your GitHub org/user name.
projectName: "arpespythontools", // Usually your repo name.
titleDelimiter: "•",
markdown: {
hooks: {
onBrokenMarkdownLinks: "warn",
},
},
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
Expand Down
3 changes: 2 additions & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[build]
command = """
wget https://raw.githubusercontent.com/pranabdas/espresso/refs/heads/main/scripts/build_docusaurus.sh
sed -i 's|baseUrl:.*|baseUrl: "/",|I' docusaurus.config.js
npm run build
bash build_docusaurus.sh
"""

publish = "build"
Expand Down
Loading
Loading