Skip to content

Commit

Permalink
Constrain requirement versions
Browse files Browse the repository at this point in the history
colorful 0.4.4 is not backwards compatible
  • Loading branch information
salkinium committed Dec 15, 2018
1 parent c3c31c2 commit 1c225c9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lbuild/main.py
Expand Up @@ -21,7 +21,7 @@

from lbuild.api import Builder

__version__ = '1.5.0'
__version__ = '1.5.3'


class InitAction:
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
@@ -1,11 +1,11 @@
lxml
jinja2
anytree
colorful
anytree>=2.4.3
colorful<0.4.4

# Required for the tests
testfixtures
coverage

# For the handling of external repositories
gitpython
gitpython>=2.1.11
6 changes: 5 additions & 1 deletion setup.py
Expand Up @@ -31,7 +31,11 @@
# Make sure all files are unzipped during installation
#zip_safe = False,

install_requires = ["lxml", "jinja2", "gitpython", "anytree", "colorful"],
install_requires = ["lxml",
"jinja2",
"gitpython>=2.1.11",
"anytree>=2.4.3",
"colorful<0.4.4"],

extras_require = {
"test": ["testfixtures", "coverage"],
Expand Down

0 comments on commit 1c225c9

Please sign in to comment.