Skip to content
Closed
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
18 changes: 8 additions & 10 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,31 +26,29 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

- name: Log Python version
run: python --version

- name: Install dependencies
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get --ignore-missing update || true
sudo apt-get install -y linux-*-extra-$(uname -r) graphviz ncat
sudo apt-get install -y linux-*-extra-$(uname -r) graphviz ncat pkg-config libconfig-dev ninja-build
fi
git submodule update --init --recursive
python -m pip install --upgrade pip setuptools nox
python -m pip install --upgrade pip setuptools nox meson
shell: bash

- name: Build and Install Socketcand
if: ${{ runner.os == 'Linux' }}
run: |
sudo apt-get install -y autoconf
git clone https://github.com/linux-can/socketcand.git
cd socketcand
./autogen.sh
./configure
make
sudo make install

meson setup -Dlibconfig=true --buildtype=release build
meson compile -C build
meson install -C build

- name: Collect Linux diagnostic data
if: ${{ runner.os == 'Linux' }}
run: ip link show
Expand All @@ -73,7 +71,7 @@ jobs:
shell: bash

- name: Save logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: PyCyphal-${{ matrix.os }}-python-${{ matrix.python }}
path: .nox/*/*/*.log
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/demo.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Grab your copy from git::

git clone https://github.com/OpenCyphal/public_regulated_data_types

The demo relies on two vendor-specific data types located in the root namespace ``sirius_cyber_corp``.
The demo relies on two vendor-specific data types located in the root namespace ``sirius_cyber_corp`` that you must create as described below.
The root namespace directory layout is as follows::

sirius_cyber_corp/ # root namespace directory
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.20.0"
__version__ = "1.20.1"
Loading