File tree Expand file tree Collapse file tree 4 files changed +25
-2
lines changed Expand file tree Collapse file tree 4 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 50
50
python --version
51
51
ip link show
52
52
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
+
53
61
- name : Configure environment -- Windows
54
62
if : ${{ runner.os == 'Windows' }}
55
63
run : |
88
96
python -m pip install --upgrade pip packaging setuptools wheel twine
89
97
python setup.py sdist bdist_wheel
90
98
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
+
91
108
- name : Get release version
92
109
run : |
93
110
cd pycyphal
Original file line number Diff line number Diff line change 3
3
version : 2
4
4
5
5
build :
6
- os : ubuntu-22.04
6
+ os : ubuntu-lts-latest
7
7
tools :
8
8
python : " 3.10"
9
9
apt_packages :
Original file line number Diff line number Diff line change 10
10
- Add ``remove_import_hook ``, rename ``install_import_hook `` to ``add_import_hook `` (`#356 <https://github.com/OpenCyphal/pycyphal/pull/356 >`_)
11
11
- Choose the type width based on elements in the source array (`#358 <https://github.com/OpenCyphal/pycyphal/pull/358 >`_)
12
12
13
+ - **v1.24.1: **
14
+
15
+ - Install Graphviz 13.x.
16
+ See (`#363 <https://github.com/OpenCyphal/pycyphal/pull/363 >`_)
17
+
18
+
13
19
v1.23
14
20
-----
15
21
Original file line number Diff line number Diff line change 1
- __version__ = "1.24"
1
+ __version__ = "1.24.1 "
You can’t perform that action at this time.
0 commit comments