Quellcode durchsuchen

Bumped version to 0.1.13 and updated changelog.

Ask Solem vor 16 Jahren
Ursprung
Commit
2f02f1ddba
3 geänderte Dateien mit 6 neuen und 3 gelöschten Zeilen
  1. 1 1
      README.rst
  2. 1 1
      celery/__init__.py
  3. 4 1
      setup.py

+ 1 - 1
README.rst

@@ -4,7 +4,7 @@ celery - Distributed Task Queue for Django.
 
 :Authors:
     Ask Solem (askh@opera.com)
-:Version: 0.1.12
+:Version: 0.1.13
 
 Introduction
 ------------

+ 1 - 1
celery/__init__.py

@@ -1,5 +1,5 @@
 """Distributed Task Queue for Django"""
-VERSION = (0, 1, 12)
+VERSION = (0, 1, 13)
 __version__ = ".".join(map(str, VERSION))
 __author__ = "Ask Solem"
 __contact__ = "askh@opera.com"

+ 4 - 1
setup.py

@@ -47,6 +47,9 @@ py_minor_version = py_version_info[1]
 if (py_major_version == 2 and py_minor_version <=5) or py_major_version < 2:
     install_requires.append("multiprocessing")    
 
+long_description = codecs.open("README.rst", "r", "utf-8").read() + "\n" + \
+                   codecs.open("Changelog", "r", "utf-8").read()
+
 setup(
     name='celery',
     version=celery.__version__,
@@ -79,5 +82,5 @@ setup(
         "Topic :: System :: Distributed Computing",
         "Topic :: Software Development :: Libraries :: Python Modules",
     ],
-    long_description=codecs.open('README.rst', "r", "utf-8").read(),
+    long_description=long_description,
 )