From 5b88e42eae115e81c5a70148e52e299da8b333d8 Mon Sep 17 00:00:00 2001 From: accraze Date: Thu, 7 Jan 2016 08:50:47 -0800 Subject: [PATCH] Minor release version bump contains bug fix for non returning generator --- pymjq/__init__.py | 4 ++-- setup.py | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pymjq/__init__.py b/pymjq/__init__.py index e19180a..14c4e94 100644 --- a/pymjq/__init__.py +++ b/pymjq/__init__.py @@ -1,6 +1,6 @@ -"""Creates a queue, iterates through docs and waits when queue is empty.""" +"""Creates a queue, adds and iterates through docs and waits when queue is empty.""" -__version__ = '1.0.2' +__version__ = '1.1.0' __url__ = 'https://github.com/discogs/pymongo-job-queue' __author__ = 'Andy Craze' __email__ = 'acraze@discogsinc.com' diff --git a/setup.py b/setup.py index 05e9f68..645c81c 100644 --- a/setup.py +++ b/setup.py @@ -2,23 +2,23 @@ from codecs import open # To use a consistent encoding from os import path -here = path.abspath(path.dirname(__file__)) +# here = path.abspath(path.dirname(__file__)) -# Get the long description from the relevant file -with open(path.join(here, 'README.rst'), encoding='utf-8') as f: - long_description = f.read() +# # Get the long description from the relevant file +# with open(path.join(here, 'README.rst'), encoding='utf-8') as f: +# long_description = f.read() setup( name = 'pymjq', packages = ['pymjq'], # this must be the same as the name above - version = '1.0.2', + version = '1.1.0', description = 'Simple MongoDB based job queue', - long_description=long_description, + # long_description=long_description, license = 'MIT', author = 'Andy Craze', author_email = 'acraze@discogsinc.com', url = 'https://github.com/discogs/pymongo-job-queue', # use the URL to the github repo - download_url = 'https://github.com/discogs/pymongo-job-queue/tarball/1.0.1', + download_url = 'https://github.com/discogs/pymongo-job-queue/tarball/1.1.0', keywords = ['queue', 'pymongo', 'mongodb', 'job', 'async', 'worker', 'tail'], # arbitrary keywords classifiers = [ # Indicate who the project is intended for