]> git-server-git.apps.pok.os.sepia.ceph.com Git - remoto.git/commitdiff
fix foobared v 0.0.18 by using right execnet tag 0.0.19
authorAlfredo Deza <alfredo@deza.pe>
Thu, 10 Jul 2014 20:28:09 +0000 (16:28 -0400)
committerAlfredo Deza <alfredo@deza.pe>
Thu, 10 Jul 2014 20:31:05 +0000 (16:31 -0400)
Signed-off-by: Alfredo Deza <alfredo@deza.pe>
CHANGELOG.rst
remoto/__init__.py
setup.py
vendor.py

index c69cbed3f264206b44f15706749354f529c9bd9a..0408abc09f098614598a5f9c7b3e0c4bde8d26fc 100644 (file)
@@ -1,3 +1,12 @@
+0.0.19
+------
+* Fix ``vendor.py`` to really include the proper tag for ``execnet``
+
+0.0.18
+------
+* Use execnet 1.2post2 that fixes a problem with ``None`` globals (see issue
+  #1)
+
 0.0.17
 ------
 * add some imports to init so that they are easier to use
index 2a8dbb6743915b97e96fb3720dd8a8a502805fdd..40aa8269114ac91215812f6f15a9a67556b79bed 100644 (file)
@@ -4,4 +4,4 @@ from . import process
 from . import connection
 
 
-__version__ = '0.0.18'
+__version__ = '0.0.19'
index 40dad376eccecc5ff5392705349507f7946b4de4..24714fc0879b688df331c8c0fc639e561925ccae 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -19,7 +19,7 @@ if os.environ.get('REMOTO_NO_VENDOR'):
     clean_vendor('execnet')
 else:
     vendorize([
-        ('execnet', '1.2.post2', 'https://github.com/alfredodeza/execnet'),
+        ('execnet', '1.2post2', 'https://github.com/alfredodeza/execnet'),
     ])
 
 
index 34f795e717f736329af8853a26da3b78daca61fb..1840f4362e20df69dc34a04c5e02ccf9ab80c165 100644 (file)
--- a/vendor.py
+++ b/vendor.py
@@ -99,7 +99,7 @@ if __name__ == '__main__':
     # XXX define this in one place, so that we avoid making updates
     # in two places
     vendor_requirements = [
-        ('execnet', '1.2.post1', 'https://github.com/alfredodeza/execnet'),
+        ('execnet', '1.2post2', 'https://github.com/alfredodeza/execnet'),
     ]
     vendorize(vendor_requirements)