Skip to content

Commit 30de19d

Browse files
Zachary ZhangZachary Zhang
authored andcommitted
fix: python api setup install
1 parent 6a54a80 commit 30de19d

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

API/Python/setup.py

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@
77
import setuptools
88

99
long_description = '''
10+
# 2021.1.9
11+
12+
Fix the API problem that `is_moving()` and other methods of mycobot cannot be used.
13+
14+
# 2021.1.8
15+
16+
Python API add new methods:
17+
18+
- `jog_angle()`
19+
- `jog_coord()`
20+
- `jog_stop()`
21+
22+
# 2020.12.30
23+
24+
Adding usage documents to Python API.
25+
26+
# 2020.12.29
27+
28+
Python API supports python2.7
29+
30+
Modify the serial port to manual setting, support the use of window.
1031
1132
'''
1233

@@ -26,7 +47,7 @@
2647
"Operating System :: OS Independent",
2748
],
2849
install_requires=['pyserial'],
29-
python_requires='2.7, >=3.5',
50+
python_requires='=2.7, >=3.5',
3051
)
3152

3253

0 commit comments

Comments
 (0)