Skip to content

Commit 0b926ea

Browse files
authored
install graphviz 13.x (#363)
Install graphviz 13.x from .deb to replace the default 2.x version which affects the diagrams scaling. Closes #321
1 parent 651013f commit 0b926ea

File tree

4 files changed

+25
-2
lines changed

4 files changed

+25
-2
lines changed

.github/workflows/test-and-release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,14 @@ jobs:
5050
python --version
5151
ip link show
5252
53+
# Install Graphviz 13.x
54+
wget https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/13.1.0/ubuntu_24.04_graphviz-13.1.0-cmake.deb
55+
sudo sudo dpkg -i ./ubuntu_24.04_graphviz-13.1.0-cmake.deb
56+
57+
# Check Graphviz version
58+
dot -V
59+
which dot
60+
5361
- name: Configure environment -- Windows
5462
if: ${{ runner.os == 'Windows' }}
5563
run: |
@@ -88,6 +96,15 @@ jobs:
8896
python -m pip install --upgrade pip packaging setuptools wheel twine
8997
python setup.py sdist bdist_wheel
9098
99+
- name: Install Graphviz 13.x
100+
run: |
101+
wget https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/13.1.0/ubuntu_24.04_graphviz-13.1.0-cmake.deb
102+
sudo sudo dpkg -i ./ubuntu_24.04_graphviz-13.1.0-cmake.deb
103+
104+
# Check Graphviz version
105+
dot -V
106+
which dot
107+
91108
- name: Get release version
92109
run: |
93110
cd pycyphal

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
version: 2
44

55
build:
6-
os: ubuntu-22.04
6+
os: ubuntu-lts-latest
77
tools:
88
python: "3.10"
99
apt_packages:

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ v1.24
1010
- Add ``remove_import_hook``, rename ``install_import_hook`` to ``add_import_hook`` (`#356 <https://github.com/OpenCyphal/pycyphal/pull/356>`_)
1111
- Choose the type width based on elements in the source array (`#358 <https://github.com/OpenCyphal/pycyphal/pull/358>`_)
1212

13+
- **v1.24.1:**
14+
15+
- Install Graphviz 13.x.
16+
See (`#363 <https://github.com/OpenCyphal/pycyphal/pull/363>`_)
17+
18+
1319
v1.23
1420
-----
1521

pycyphal/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.24"
1+
__version__ = "1.24.1"

0 commit comments

Comments
 (0)