Skip to content

Commit 39867af

Browse files
committed
release v2.3
1 parent d3adff1 commit 39867af

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 2021.3.26
2+
3+
- release **v2.3**
4+
- fix `is_in_position()`
5+
- refactor process method
6+
- some methods can be chained
7+
- add new methods to control pump
8+
- change `set_led_color(rgb:str)` -> `set_color(r:int, g:int, b:in)`
9+
110
# 2021.3.12
211

312
added more test file.

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
import sys
22

3+
VERSION = "2.3"
34

45
PYTHON_VERSION = sys.version_info[:2]
5-
VERSION = "2.2.1"
6-
76
if (2, 7) != PYTHON_VERSION < (3, 5):
87
print("This mycobot version requires Python2.7, 3.5 or later.")
98
sys.exit(1)
109

1110
import setuptools
1211

13-
1412
if PYTHON_VERSION == (2, 7):
1513
long_description = ""
1614
else:
@@ -37,6 +35,5 @@
3735
"Operating System :: OS Independent",
3836
],
3937
install_requires=['pyserial'],
40-
python_requires= '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, != 3.4.*',
38+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, != 3.4.*',
4139
)
42-

0 commit comments

Comments
 (0)