Skip to content

Commit

Permalink
Update branding
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-kirienko committed Apr 8, 2022
1 parent cffb9a4 commit 3d3d492
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
[![PyPI - Downloads](https://img.shields.io/pypi/dm/pydsdl)](https://pypi.org/project/pydsdl/)
[![Forum](https://img.shields.io/discourse/https/forum.uavcan.org/users.svg)](https://forum.uavcan.org)

PyDSDL is a [UAVCAN](https://uavcan.org) DSDL compiler front-end implemented in Python.
PyDSDL is a [Cyphal](https://opencyphal.org) DSDL compiler front-end implemented in Python.
It accepts a DSDL namespace at the input and produces a well-annotated abstract syntax tree (AST) at the output,
evaluating all constant expressions in the process.
All DSDL features defined in the UAVCAN Specification are supported.
All DSDL features defined in the Cyphal Specification are supported.
The library should, in theory, work on any platform and with any Python implementation.

**Read the docs at [pydsdl.readthedocs.io](https://pydsdl.readthedocs.io/).**
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PyDSDL documentation
PyDSDL is a `Cyphal <https://opencyphal.org>`_ DSDL compiler front-end implemented in Python.
It accepts a DSDL namespace at the input and produces a well-annotated abstract syntax tree (AST) at the output,
evaluating all constant expressions in the process.
All DSDL features defined in the UAVCAN Specification are supported.
All DSDL features defined in the Cyphal Specification are supported.

If you have questions, please bring them to the `support forum <https://forum.uavcan.org/>`_.

Expand Down
2 changes: 1 addition & 1 deletion pydsdl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import os as _os
import sys as _sys

__version__ = "1.15.0"
__version__ = "1.15.1"
__version_info__ = tuple(map(int, __version__.split(".")[:3]))
__license__ = "MIT"
__author__ = "UAVCAN Consortium"
Expand Down
2 changes: 1 addition & 1 deletion pydsdl/_serializable/_primitive.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InvalidCastModeError(TypeParameterError):

class PrimitiveType(SerializableType):
MAX_BIT_LENGTH = 64
BITS_IN_BYTE = 8 # Defined in the UAVCAN specification
BITS_IN_BYTE = 8 # Defined in the Cyphal specification

class CastMode(enum.Enum):
SATURATED = 0
Expand Down
2 changes: 1 addition & 1 deletion pydsdl/_serializable/_serializable.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class SerializableType(_expression.Any):

BITS_PER_BYTE = 8
"""
This is dictated by the UAVCAN Specification.
This is dictated by the Cyphal Specification.
"""

def __init__(self) -> None:
Expand Down

0 comments on commit 3d3d492

Please sign in to comment.