[ARVADOS] updated: 9da8cfcc74e1b8da6d147215ec4c25a6ffea3ced

git at public.curoverse.com git at public.curoverse.com
Sat Oct 4 22:37:30 EDT 2014


Summary of changes:
 services/nodemanager/arvnodeman/__init__.py             | 2 ++
 services/nodemanager/arvnodeman/clientactor.py          | 2 ++
 services/nodemanager/arvnodeman/computenode/__init__.py | 2 ++
 services/nodemanager/arvnodeman/computenode/dummy.py    | 2 ++
 services/nodemanager/arvnodeman/computenode/ec2.py      | 2 ++
 services/nodemanager/arvnodeman/config.py               | 2 ++
 services/nodemanager/arvnodeman/daemon.py               | 2 ++
 services/nodemanager/arvnodeman/jobqueue.py             | 2 ++
 services/nodemanager/arvnodeman/nodelist.py             | 2 ++
 services/nodemanager/arvnodeman/timedcallback.py        | 2 ++
 services/nodemanager/bin/arvados-node-manager           | 2 ++
 services/nodemanager/tests/test_clientactor.py          | 2 ++
 services/nodemanager/tests/test_computenode.py          | 2 ++
 services/nodemanager/tests/test_computenode_ec2.py      | 2 ++
 services/nodemanager/tests/test_config.py               | 2 ++
 services/nodemanager/tests/test_daemon.py               | 2 ++
 services/nodemanager/tests/test_jobqueue.py             | 2 ++
 services/nodemanager/tests/test_nodelist.py             | 2 ++
 services/nodemanager/tests/test_timedcallback.py        | 2 ++
 services/nodemanager/tests/testutil.py                  | 2 ++
 20 files changed, 40 insertions(+)

       via  9da8cfcc74e1b8da6d147215ec4c25a6ffea3ced (commit)
      from  1b03029be18e18f3155be51fd15e594b5e33a14c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 9da8cfcc74e1b8da6d147215ec4c25a6ffea3ced
Author: Brett Smith <brett at curoverse.com>
Date:   Sat Oct 4 22:37:25 2014 -0400

    Fixup: Import future features everywhere.

diff --git a/services/nodemanager/arvnodeman/__init__.py b/services/nodemanager/arvnodeman/__init__.py
index ef437c1..da3013c 100644
--- a/services/nodemanager/arvnodeman/__init__.py
+++ b/services/nodemanager/arvnodeman/__init__.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 # First import and expose all the classes we want to export.
 from .computenode import \
     ComputeNodeSetupActor, ComputeNodeShutdownActor, ComputeNodeActor, \
diff --git a/services/nodemanager/arvnodeman/clientactor.py b/services/nodemanager/arvnodeman/clientactor.py
index 079cb03..e02485c 100644
--- a/services/nodemanager/arvnodeman/clientactor.py
+++ b/services/nodemanager/arvnodeman/clientactor.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import logging
 import time
 
diff --git a/services/nodemanager/arvnodeman/computenode/__init__.py b/services/nodemanager/arvnodeman/computenode/__init__.py
index 7400dc1..2246831 100644
--- a/services/nodemanager/arvnodeman/computenode/__init__.py
+++ b/services/nodemanager/arvnodeman/computenode/__init__.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import functools
 import itertools
 import logging
diff --git a/services/nodemanager/arvnodeman/computenode/dummy.py b/services/nodemanager/arvnodeman/computenode/dummy.py
index 3a05891..30e1d9a 100644
--- a/services/nodemanager/arvnodeman/computenode/dummy.py
+++ b/services/nodemanager/arvnodeman/computenode/dummy.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import time
 
 import libcloud.compute.providers as cloud_provider
diff --git a/services/nodemanager/arvnodeman/computenode/ec2.py b/services/nodemanager/arvnodeman/computenode/ec2.py
index 9f6bea7..cfd7f84 100644
--- a/services/nodemanager/arvnodeman/computenode/ec2.py
+++ b/services/nodemanager/arvnodeman/computenode/ec2.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import time
 
 import libcloud.compute.base as cloud_base
diff --git a/services/nodemanager/arvnodeman/config.py b/services/nodemanager/arvnodeman/config.py
index 2cfaaee..ca85d29 100644
--- a/services/nodemanager/arvnodeman/config.py
+++ b/services/nodemanager/arvnodeman/config.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import ConfigParser
 import importlib
 import logging
diff --git a/services/nodemanager/arvnodeman/daemon.py b/services/nodemanager/arvnodeman/daemon.py
index 8d8f107..ab5b2aa 100644
--- a/services/nodemanager/arvnodeman/daemon.py
+++ b/services/nodemanager/arvnodeman/daemon.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import functools
 import logging
 import time
diff --git a/services/nodemanager/arvnodeman/jobqueue.py b/services/nodemanager/arvnodeman/jobqueue.py
index 9d29818..88d4b53 100644
--- a/services/nodemanager/arvnodeman/jobqueue.py
+++ b/services/nodemanager/arvnodeman/jobqueue.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 from . import clientactor
 from .config import ARVADOS_ERRORS
 
diff --git a/services/nodemanager/arvnodeman/nodelist.py b/services/nodemanager/arvnodeman/nodelist.py
index dd15dc2..d0d2aac 100644
--- a/services/nodemanager/arvnodeman/nodelist.py
+++ b/services/nodemanager/arvnodeman/nodelist.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import arvados.errors as arverror
 
 from . import clientactor
diff --git a/services/nodemanager/arvnodeman/timedcallback.py b/services/nodemanager/arvnodeman/timedcallback.py
index ee65a71..51afbd2 100644
--- a/services/nodemanager/arvnodeman/timedcallback.py
+++ b/services/nodemanager/arvnodeman/timedcallback.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import heapq
 import time
 
diff --git a/services/nodemanager/bin/arvados-node-manager b/services/nodemanager/bin/arvados-node-manager
index fba3453..3a91288 100644
--- a/services/nodemanager/bin/arvados-node-manager
+++ b/services/nodemanager/bin/arvados-node-manager
@@ -1,4 +1,6 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 from arvnodeman.launcher import main
 main()
diff --git a/services/nodemanager/tests/test_clientactor.py b/services/nodemanager/tests/test_clientactor.py
index d09d342..0db0a33 100644
--- a/services/nodemanager/tests/test_clientactor.py
+++ b/services/nodemanager/tests/test_clientactor.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import unittest
 
 import mock
diff --git a/services/nodemanager/tests/test_computenode.py b/services/nodemanager/tests/test_computenode.py
index 5879a8f..f2454d3 100644
--- a/services/nodemanager/tests/test_computenode.py
+++ b/services/nodemanager/tests/test_computenode.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import time
 import unittest
 
diff --git a/services/nodemanager/tests/test_computenode_ec2.py b/services/nodemanager/tests/test_computenode_ec2.py
index d6b36ad..ac9fda5 100644
--- a/services/nodemanager/tests/test_computenode_ec2.py
+++ b/services/nodemanager/tests/test_computenode_ec2.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import time
 import unittest
 
diff --git a/services/nodemanager/tests/test_config.py b/services/nodemanager/tests/test_config.py
index f726e6e..3aa9541 100644
--- a/services/nodemanager/tests/test_config.py
+++ b/services/nodemanager/tests/test_config.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import io
 import logging
 import unittest
diff --git a/services/nodemanager/tests/test_daemon.py b/services/nodemanager/tests/test_daemon.py
index 28be5fa..3468ec0 100644
--- a/services/nodemanager/tests/test_daemon.py
+++ b/services/nodemanager/tests/test_daemon.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import time
 import unittest
 
diff --git a/services/nodemanager/tests/test_jobqueue.py b/services/nodemanager/tests/test_jobqueue.py
index 0ff9ebb..3814ba4 100644
--- a/services/nodemanager/tests/test_jobqueue.py
+++ b/services/nodemanager/tests/test_jobqueue.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import unittest
 
 import arvnodeman.jobqueue as jobqueue
diff --git a/services/nodemanager/tests/test_nodelist.py b/services/nodemanager/tests/test_nodelist.py
index f4a3321..d9f47e2 100644
--- a/services/nodemanager/tests/test_nodelist.py
+++ b/services/nodemanager/tests/test_nodelist.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import unittest
 
 import arvnodeman.nodelist as nodelist
diff --git a/services/nodemanager/tests/test_timedcallback.py b/services/nodemanager/tests/test_timedcallback.py
index 7c4c43b..60f7b81 100644
--- a/services/nodemanager/tests/test_timedcallback.py
+++ b/services/nodemanager/tests/test_timedcallback.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import time
 import unittest
 
diff --git a/services/nodemanager/tests/testutil.py b/services/nodemanager/tests/testutil.py
index d67cf1c..0b92633 100644
--- a/services/nodemanager/tests/testutil.py
+++ b/services/nodemanager/tests/testutil.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 
+from __future__ import absolute_import, print_function
+
 import time
 
 import mock

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list