forked from platformio/platformio-core
Froze "marshmallow" dependency to 2.X for Python 2 // Resolve #3380
This commit is contained in:
5
setup.py
5
setup.py
@ -23,6 +23,8 @@ from platformio import (
|
||||
__url__,
|
||||
__version__,
|
||||
)
|
||||
from platformio.compat import PY2
|
||||
|
||||
|
||||
install_requires = [
|
||||
"bottle<0.13",
|
||||
@ -33,9 +35,10 @@ install_requires = [
|
||||
"semantic_version>=2.8.1,<3",
|
||||
"tabulate>=0.8.3,<1",
|
||||
"pyelftools>=0.25,<1",
|
||||
"marshmallow>=2.20.5",
|
||||
"marshmallow%s" % (">=2,<3" if PY2 else ">=3"),
|
||||
]
|
||||
|
||||
|
||||
setup(
|
||||
name=__title__,
|
||||
version=__version__,
|
||||
|
Reference in New Issue
Block a user