Skip to content
Open
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
4 changes: 2 additions & 2 deletions 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"
__version__ = "4.0.0-dev.0"

log = logging.getLogger("can")

Expand All @@ -24,6 +24,7 @@
CanTimeoutError,
)


from .util import set_logging_level

from .message import Message
Expand All @@ -34,7 +35,6 @@
from . import interface
from .interface import Bus, detect_available_configs
from .bit_timing import BitTiming

from .io import Logger, SizedRotatingLogger, Printer, LogReader, MessageSync
from .io import ASCWriter, ASCReader
from .io import BLFReader, BLFWriter
Expand Down
1 change: 1 addition & 0 deletions can/interfaces/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"neousys": ("can.interfaces.neousys", "NeousysBus"),
"etas": ("can.interfaces.etas", "EtasBus"),
"socketcand": ("can.interfaces.socketcand", "SocketCanDaemonBus"),
"ecom": ("can.interfaces.ecom", "EcomBus"),
}

try:
Expand Down
1 change: 1 addition & 0 deletions can/interfaces/ecom/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from can.interfaces.ecom.canlib import EcomBus
Loading