-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(docker): update CI and docker to python 3.11 using uv (#402)
* build(docker): update to python 3.11 and use uv * ci(github): update workflow to python 3.11 and uv * style(precommit): bump precommit python * ci(style): fix deps installation command
- Loading branch information
Showing
12 changed files
with
131 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,25 +3,25 @@ on: | |
push: | ||
branches: main | ||
|
||
env: | ||
UV_VERSION: "0.5.13" | ||
|
||
jobs: | ||
gh-pages: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
python: [3.9] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
python-version: 3.9 | ||
architecture: x64 | ||
- uses: astral-sh/setup-uv@v5 | ||
with: | ||
version: ${{ env.UV_VERSION }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade uv | ||
uv pip install --system -e "client/.[docs]" | ||
run: uv pip install --system -e "client/.[docs]" | ||
|
||
- name: Build documentation | ||
run: sphinx-build client/docs/source client/docs/build -a -v | ||
|
@@ -37,8 +37,7 @@ jobs: | |
- name: Deploy to Github Pages | ||
uses: JamesIves/[email protected] | ||
with: | ||
BRANCH: gh-pages | ||
FOLDER: 'client/docs/build' | ||
COMMIT_MESSAGE: '[skip ci] Documentation updates' | ||
CLEAN: true | ||
SSH: true | ||
branch: gh-pages | ||
folder: 'client/docs/build' | ||
commit-message: '[skip ci] Documentation updates' | ||
clean: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.