You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2015/02/18 16:30:24 UTC

[1/2] libcloud git commit: Move test requirements into a file and pin pep8 dependency to a specific version.

Repository: libcloud
Updated Branches:
  refs/heads/trunk 823abd594 -> 67dcedf8b


Move test requirements into a file and pin pep8 dependency to a specific
version.


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/f08a2181
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/f08a2181
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/f08a2181

Branch: refs/heads/trunk
Commit: f08a21819cb512eb94643a834af7a83f686ffd1e
Parents: 823abd5
Author: Tomaz Muraus <to...@apache.org>
Authored: Wed Feb 18 16:25:53 2015 +0100
Committer: Tomaz Muraus <to...@apache.org>
Committed: Wed Feb 18 16:26:31 2015 +0100

----------------------------------------------------------------------
 MANIFEST.in            | 1 +
 requirements-tests.txt | 2 ++
 tox.ini                | 2 +-
 3 files changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/f08a2181/MANIFEST.in
----------------------------------------------------------------------
diff --git a/MANIFEST.in b/MANIFEST.in
index 8a9cbb3..4d6ee91 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -4,6 +4,7 @@ include example_*.py
 include CHANGES.rst
 include README.rst
 include tox.ini
+include requirements-tests.txt
 include libcloud/data/pricing.json
 prune libcloud/test/secrets.py
 include demos/*

http://git-wip-us.apache.org/repos/asf/libcloud/blob/f08a2181/requirements-tests.txt
----------------------------------------------------------------------
diff --git a/requirements-tests.txt b/requirements-tests.txt
new file mode 100644
index 0000000..43a4894
--- /dev/null
+++ b/requirements-tests.txt
@@ -0,0 +1,2 @@
+pep8>=1.6.2,<1.7
+flake8

http://git-wip-us.apache.org/repos/asf/libcloud/blob/f08a2181/tox.ini
----------------------------------------------------------------------
diff --git a/tox.ini b/tox.ini
index f13e909..d081603 100644
--- a/tox.ini
+++ b/tox.ini
@@ -65,7 +65,7 @@ depds = pylint
 commands = pylint --rcfile=.pylintrc -E libcloud/
 
 [testenv:lint]
-deps = flake8
+deps = -r{toxinidir}/requirements-tests.txt
 commands = flake8 --ignore=E402 --exclude="test" libcloud/
            flake8 --ignore=E402 --max-line-length=160 libcloud/test/
            flake8 --ignore=E402 demos/


[2/2] libcloud git commit: Indicate that we are working on a new version.

Posted by to...@apache.org.
Indicate that we are working on a new version.


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/67dcedf8
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/67dcedf8
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/67dcedf8

Branch: refs/heads/trunk
Commit: 67dcedf8bdde7b1b8b258be8344c4e4988fbf329
Parents: f08a218
Author: Tomaz Muraus <to...@apache.org>
Authored: Wed Feb 18 16:27:16 2015 +0100
Committer: Tomaz Muraus <to...@apache.org>
Committed: Wed Feb 18 16:27:16 2015 +0100

----------------------------------------------------------------------
 libcloud/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/67dcedf8/libcloud/__init__.py
----------------------------------------------------------------------
diff --git a/libcloud/__init__.py b/libcloud/__init__.py
index 5f7d027..f30729b 100644
--- a/libcloud/__init__.py
+++ b/libcloud/__init__.py
@@ -20,7 +20,7 @@ libcloud provides a unified interface to the cloud computing resources.
 """
 
 __all__ = ['__version__', 'enable_debug']
-__version__ = '0.17.0'
+__version__ = '0.17.1-dev'
 
 import os