← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] lp:~ricardokirkner/python-oops-amqp/no-pymongo-for-bson into lp:python-oops-amqp

 

Ricardo Kirkner has proposed merging lp:~ricardokirkner/python-oops-amqp/no-pymongo-for-bson into lp:python-oops-amqp.

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~ricardokirkner/python-oops-amqp/no-pymongo-for-bson/+merge/273263
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~ricardokirkner/python-oops-amqp/no-pymongo-for-bson into lp:python-oops-amqp.
=== modified file 'oops_amqp/__init__.py'
--- oops_amqp/__init__.py	2012-08-10 03:06:16 +0000
+++ oops_amqp/__init__.py	2015-10-02 16:27:23 +0000
@@ -54,7 +54,7 @@
 
 From time to time your AMQP server may be unavailable. If that happens then
 the Publisher will not assign an oops id - it will return None to signal that
-the publication failed. To prevent losing the OOPS its a good idea to have a 
+the publication failed. To prevent losing the OOPS its a good idea to have a
 fallback publisher - either another AMQP publisher (to a different server) or
 one that spools locally (where you can pick up the OOPSes via rsync or some
 other mechanism. Using the oops standard helper publish_with_fallback will let
@@ -97,7 +97,7 @@
 # established at this point, and setup.py will use a version of next-$(revno).
 # If the releaselevel is 'final', then the tarball will be major.minor.micro.
 # Otherwise it is major.minor.micro~$(revno).
-__version__ = (0, 0, 8, 'beta', 0)
+__version__ = (0, 0, 8, 'beta', 1)
 
 __all__ = [
     'Publisher',

=== modified file 'setup.py'
--- setup.py	2012-08-10 03:04:59 +0000
+++ setup.py	2015-10-02 16:27:23 +0000
@@ -23,7 +23,7 @@
         os.path.join(os.path.dirname(__file__), 'README'), 'rb').read()
 
 setup(name="oops_amqp",
-      version="0.0.8",
+      version="0.0.8b1",
       description=\
               "OOPS AMQP transport.",
       long_description=description,
@@ -40,7 +40,7 @@
           'Programming Language :: Python',
           ],
       install_requires = [
-          'pymongo',
+          'bson',
           'oops>=0.0.11',
           'amqplib',
           ],


Follow ups