Skip to content

build graphviz 13.x #363

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

Merged
merged 3 commits into from
Jul 15, 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
17 changes: 17 additions & 0 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,14 @@ jobs:
python --version
ip link show

# Install Graphviz 13.x
wget https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/13.1.0/ubuntu_24.04_graphviz-13.1.0-cmake.deb
sudo sudo dpkg -i ./ubuntu_24.04_graphviz-13.1.0-cmake.deb

# Check Graphviz version
dot -V
which dot

- name: Configure environment -- Windows
if: ${{ runner.os == 'Windows' }}
run: |
Expand Down Expand Up @@ -88,6 +96,15 @@ jobs:
python -m pip install --upgrade pip packaging setuptools wheel twine
python setup.py sdist bdist_wheel

- name: Install Graphviz 13.x
run: |
wget https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/13.1.0/ubuntu_24.04_graphviz-13.1.0-cmake.deb
sudo sudo dpkg -i ./ubuntu_24.04_graphviz-13.1.0-cmake.deb

# Check Graphviz version
dot -V
which dot

- name: Get release version
run: |
cd pycyphal
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
version: 2

build:
os: ubuntu-22.04
os: ubuntu-lts-latest
tools:
python: "3.10"
apt_packages:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ v1.24
- Add ``remove_import_hook``, rename ``install_import_hook`` to ``add_import_hook`` (`#356 <https://github.com/OpenCyphal/pycyphal/pull/356>`_)
- Choose the type width based on elements in the source array (`#358 <https://github.com/OpenCyphal/pycyphal/pull/358>`_)

- **v1.24.1:**

- Install Graphviz 13.x.
See (`#363 <https://github.com/OpenCyphal/pycyphal/pull/363>`_)


v1.23
-----

Expand Down
2 changes: 1 addition & 1 deletion pycyphal/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.24"
__version__ = "1.24.1"