Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: properly install plantuml on readthedocs #638

Merged
merged 2 commits into from
Mar 9, 2025
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- main
pull_request: {}
schedule:
- cron: '0 0 * * 0'
- cron: "0 0 * * 0"

jobs:
lint-commits:
Expand All @@ -30,7 +30,7 @@ jobs:
with:
python-version: "3.13"
- name: Install native dependencies
run: sudo apt-get update && sudo apt-get -y install libdbus-1-dev libgirepository1.0-dev libcairo2-dev
run: sudo apt-get update && sudo apt-get -y install libdbus-1-dev libgirepository-2.0-dev libcairo2-dev
- name: Cache Python packages
uses: actions/cache@v4
with:
Expand All @@ -54,7 +54,7 @@ jobs:
with:
python-version: "3.13"
- name: Install native dependencies
run: sudo apt-get update && sudo apt-get -y install libdbus-1-dev libgirepository1.0-dev plantuml libcairo2-dev
run: sudo apt-get update && sudo apt-get -y install libdbus-1-dev libgirepository-2.0-dev plantuml libcairo2-dev
- name: Cache Python packages
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install native dependencies
run: sudo apt-get update && sudo apt-get -y install libdbus-1-dev libgirepository1.0-dev libcairo2-dev
run: sudo apt-get update && sudo apt-get -y install libdbus-1-dev libgirepository-2.0-dev libcairo2-dev
- name: Cache Python packages
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
- test
- docs
steps:
- name: 'Generate token'
- name: "Generate token"
id: generate_token
uses: tibdex/github-app-token@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ build:
os: ubuntu-22.04
tools:
python: "3.11"
apt_packages:
- plantuml

python:
install:
Expand Down