Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/3.13' into library/math
Browse files Browse the repository at this point in the history
  • Loading branch information
Carisa-Li committed Oct 21, 2024
2 parents 469eaaa + bccef33 commit 0871431
Show file tree
Hide file tree
Showing 114 changed files with 9,488 additions and 9,064 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:

jobs:
ci:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

- name: Install Dependencies
run: sudo apt-get install gettext

- name: Validate
run: VERSION=${{ github.event.repository.default_branch }} MODE=dummy make all
run: VERSION=${{ github.event.repository.default_branch }} JOBS=4 MODE=html make all
4 changes: 2 additions & 2 deletions .github/workflows/deploy-gh-page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
run: sudo apt-get install gettext

- name: Build
run: make all
run: JOBS=4 MODE=html make all

- name: Deploy to gh page
uses: JamesIves/[email protected].4
uses: JamesIves/[email protected].8
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
Expand Down
228 changes: 131 additions & 97 deletions .scripts/poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ SPHINX_CONF := $(CPYTHON_CLONE)/Doc/conf.py
LANGUAGE := zh_TW
LC_MESSAGES := $(CPYTHON_CLONE)/Doc/locales/$(LANGUAGE)/LC_MESSAGES
VENV := ~/.venvs/python-docs-i18n/
MODE := autobuild-dev-html
JOBS := 4
MODE := $(or $(MODE), autobuild-dev-html)
JOBS := $(or $(JOBS), auto)

.PHONY: all
all: prepare_deps ## Automatically build an html local version
Expand Down
Loading

0 comments on commit 0871431

Please sign in to comment.