-
-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Semi-automatic rebranding * Extend the test memory limit * Update the SonarCloud project key * Make generated code independent of PyCyphal * Fix 3.7 compatibility
- Loading branch information
1 parent
e0a46fc
commit 1c45393
Showing
230 changed files
with
3,650 additions
and
3,770 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ for: | |
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 | ||
install: | ||
- 'systeminfo' | ||
# Configure Npcap. This is for testing the packet capture functionality in the UAVCAN/UDP transport. | ||
# Configure Npcap. This is for testing the packet capture functionality in the Cyphal/UDP transport. | ||
- '.test_deps\npcap-0.96.exe /loopback_support=yes /winpcap_mode=yes /S' | ||
# Installation of the NDIS filter driver from Npcap may have disrupted network connectivity, as explained in | ||
# https://github.com/nmap/npcap/issues/215. Also, a restart appears to be necessary to enable the NPF service. | ||
|
@@ -72,7 +72,7 @@ for: | |
APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004 | ||
install: | ||
- 'export extras_pkg="linux-*-extra-$(uname -r)"' | ||
# Graphviz is needed for the docs, ncat is needed for testing the UAVCAN/serial transport. | ||
# Graphviz is needed for the docs, ncat is needed for testing the Cyphal/serial transport. | ||
- 'sudo apt-get install -y $extras_pkg graphviz ncat' | ||
- 'git submodule update --init --recursive' | ||
- 'python -m pip install --upgrade pip setuptools nox' | ||
|
@@ -100,10 +100,10 @@ for: | |
# Configure git credentials. | ||
- echo "https://${GIT_TOKEN}:[email protected]" > ~/.git-credentials | ||
- git config --global credential.helper store | ||
- git config --global user.email "hedgehoginthefog@uavcan.org" | ||
- git config --global user.email "hedgehoginthefog@opencyphal.org" | ||
- git config --global user.name "Release Automation" | ||
# Tag and publish this release. Push the tag after the release is out in case it could not be published. | ||
- 'git tag "$(cat pyuavcan/VERSION)"' | ||
- 'git tag "$(cat pycyphal/VERSION)"' | ||
- 'python setup.py sdist bdist_wheel' | ||
- 'python -m twine upload dist/*' | ||
- 'git push --tags' | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,37 @@ | ||
Full-featured UAVCAN stack in Python | ||
Full-featured Cyphal stack in Python | ||
==================================== | ||
|
||
This library has been renamed into PyCyphal. | ||
Please migrate your software to use PyCyphal instead of PyUAVCAN. | ||
There have been no API changes aside from the renaming. | ||
[![Build status](https://ci.appveyor.com/api/projects/status/2vv83afj3dxqibi5/branch/master?svg=true)](https://ci.appveyor.com/project/Zubax/pycyphal/branch/master) | ||
[![RTFD](https://readthedocs.org/projects/pycyphal/badge/)](https://pycyphal.readthedocs.io/) | ||
[![Coverage Status](https://coveralls.io/repos/github/OpenCyphal/pycyphal/badge.svg)](https://coveralls.io/github/OpenCyphal/pycyphal) | ||
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PyCyphal&metric=alert_status)](https://sonarcloud.io/dashboard?id=PyCyphal) | ||
[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=PyCyphal&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=PyCyphal) | ||
[![Lines of Code](https://sonarcloud.io/api/project_badges/measure?project=PyCyphal&metric=ncloc)](https://sonarcloud.io/dashboard?id=PyCyphal) | ||
[![PyPI - Version](https://img.shields.io/pypi/v/pycyphal.svg)](https://pypi.org/project/pycyphal/) | ||
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) | ||
[![Forum](https://img.shields.io/discourse/https/forum.opencyphal.org/users.svg)](https://forum.opencyphal.org) | ||
|
||
PyCyphal is a full-featured implementation of the Cyphal protocol stack intended for non-embedded, | ||
user-facing applications such as GUI software, diagnostic tools, automation scripts, prototypes, and various R&D cases. | ||
|
||
PyCyphal aims to support all features and transport layers of Cyphal, | ||
be portable across all major platforms supporting Python, | ||
and be extensible to permit low-effort experimentation and testing of new protocol capabilities. | ||
|
||
It is designed to support **GNU/Linux**, **MS Windows**, and **macOS** as first-class target platforms. | ||
However, the library does not rely on any platform-specific capabilities, | ||
so it should be usable with other systems as well. | ||
|
||
[Cyphal](https://opencyphal.org) is an open technology for real-time intravehicular distributed computing | ||
and communication based on modern networking standards (Ethernet, CAN FD, etc.). | ||
|
||
<p align="center"> | ||
<a href="https://pycyphal.readthedocs.io/"><img src="/docs/static/arch-non-redundant.svg" width="400px"></a> | ||
</p> | ||
|
||
**READ THE DOCS: [pycyphal.readthedocs.io](https://pycyphal.readthedocs.io/)** | ||
|
||
**Ask questions: [forum.opencyphal.org](https://forum.opencyphal.org/)** | ||
|
||
*See also: [**Yakut**](https://github.com/OpenCyphal/yakut) -- a CLI tool for diagnostics and management of | ||
Cyphal networks built on top of PyCyphal.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
pyuavcan[transport-can-pythoncan,transport-serial,transport-udp] | ||
pycyphal[transport-can-pythoncan,transport-serial,transport-udp] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.