Skip to content

Commit

Permalink
release v2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zlj-zz committed Mar 26, 2021
1 parent d3adff1 commit 39867af
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 2021.3.26

- release **v2.3**
- fix `is_in_position()`
- refactor process method
- some methods can be chained
- add new methods to control pump
- change `set_led_color(rgb:str)` -> `set_color(r:int, g:int, b:in)`

# 2021.3.12

added more test file.
Expand Down
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
import sys

VERSION = "2.3"

PYTHON_VERSION = sys.version_info[:2]
VERSION = "2.2.1"

if (2, 7) != PYTHON_VERSION < (3, 5):
print("This mycobot version requires Python2.7, 3.5 or later.")
sys.exit(1)

import setuptools


if PYTHON_VERSION == (2, 7):
long_description = ""
else:
Expand All @@ -37,6 +35,5 @@
"Operating System :: OS Independent",
],
install_requires=['pyserial'],
python_requires= '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, != 3.4.*',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, != 3.4.*',
)

0 comments on commit 39867af

Please sign in to comment.