File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ The aim of the project is to support the most common parts of the CiA 301
6
6
standard in a simple Pythonic interface. It is mainly targeted for testing and
7
7
automation tasks rather than a standard compliant master implementation.
8
8
9
- The library supports Python 3.8+ .
9
+ The library supports Python 3.8 or newer .
10
10
11
11
12
12
Features
@@ -36,11 +36,11 @@ Incomplete support for creating slave nodes also exists.
36
36
Installation
37
37
------------
38
38
39
- Install from PyPI _ using pip::
39
+ Install from PyPI _ using :program: ` pip ` ::
40
40
41
41
$ pip install canopen
42
42
43
- Install from latest master on GitHub::
43
+ Install from latest `` master `` on GitHub::
44
44
45
45
$ pip install https://github.com/christiansandberg/canopen/archive/master.zip
46
46
@@ -56,6 +56,10 @@ Unit tests can be run using the pytest_ framework::
56
56
$ pip install pytest
57
57
$ pytest -v
58
58
59
+ You can also use :mod: `unittest ` standard library module::
60
+
61
+ $ python3 -m unittest discover test -v
62
+
59
63
Documentation
60
64
-------------
61
65
@@ -65,7 +69,8 @@ http://canopen.readthedocs.io/en/latest/
65
69
66
70
It can also be generated from a local clone using Sphinx _::
67
71
68
- $ python setup.py build_sphinx
72
+ $ pip install -r doc/requirements.txt
73
+ $ make -C doc html
69
74
70
75
71
76
Hardware support
You can’t perform that action at this time.
0 commit comments