Skip to content
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
2 changes: 1 addition & 1 deletion can/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import logging
from typing import Dict, Any

__version__ = "4.0.0-dev.2"
__version__ = "4.0.0-rc.0"

log = logging.getLogger("can")

Expand Down
3 changes: 2 additions & 1 deletion doc/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The CANalyst-II interface was contributed by Shaoyu Meng in 2018.
Support for CAN within Python
-----------------------------

Python natively supports the CAN protocol from version 3.3 on, if running on Linux:
Python natively supports the CAN protocol from version 3.3 on, if running on Linux (with a sufficiently new kernel):

============== ============================================================== ====
Python version Feature Link
Expand All @@ -58,4 +58,5 @@ Python version Feature
3.4 Broadcast Management (BCM) commands are natively supported `Docs <https://docs.python.org/3/library/socket.html#socket.CAN_BCM>`__
3.5 CAN FD support `Docs <https://docs.python.org/3/library/socket.html#socket.CAN_RAW_FD_FRAMES>`__
3.7 Support for CAN ISO-TP `Docs <https://docs.python.org/3/library/socket.html#socket.CAN_ISOTP>`__
3.9 Native support for joining CAN filters `Docs <https://docs.python.org/3/library/socket.html#socket.CAN_RAW_JOIN_FILTERS>`__
============== ============================================================== ====
2 changes: 1 addition & 1 deletion doc/pycanlib.pml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* This promela model was used to verify the concurrent design of the bus object. */
/* This promela model was used to verify a past design of the bus object. */

bool lock = false;

Expand Down