diff --git a/.moban.d/test.sh.jj2 b/.moban.d/test.sh.jj2 index 7a2305e..708c9ca 100644 --- a/.moban.d/test.sh.jj2 +++ b/.moban.d/test.sh.jj2 @@ -10,7 +10,7 @@ {%endif%} {%endif%} pip freeze -nosetests --with-cov --cover-package {{package|lower}} --cover-package tests {%if not exclude_doctest%}--with-doctest --doctest-extension=.rst README.rst{%endif%} tests {%if not nodocs%}docs/source{%endif%} {%if not external_module_library%}{{package|lower}}{%endif%} && flake8 . --exclude=.moban.d {%block flake8_options%}--builtins=unicode,xrange,long{%endblock%} +nosetests --with-cov --cover-package {{package|lower}} --cover-package tests {%if not exclude_doctest%}--with-doctest --doctest-extension=.rst README.rst{%endif%} tests {%if not nodocs%}docs/source{%endif%} {%if not external_module_library%}{{package|lower}}{%endif%} && flake8 . --exclude=.moban.d,docs {%block flake8_options%}--builtins=unicode,xrange,long{%endblock%} {%block posttest%} {%endblock%} diff --git a/docs/source/conf.py b/docs/source/conf.py index 9d3ac4c..0ec7a42 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -28,9 +28,9 @@ copyright = u'2017-2018 Onni Software Ltd.' author = u'C.W.' # The short X.Y version -version = u'0.0.4' +version = u'0.0.5' # The full version, including alpha/beta/rc tags -release = u'0.0.4' +release = u'0.0.5' # -- General configuration --------------------------------------------------- diff --git a/lml.yml b/lml.yml index cc0368f..49373c6 100644 --- a/lml.yml +++ b/lml.yml @@ -4,9 +4,9 @@ organisation: "chfw" author: "C.W." contact: "wangc_2011@hotmail.com" company: "Onni Software Ltd." -version: "0.0.4" -current_version: "0.0.4" -release: "0.0.4" +version: "0.0.5" +current_version: "0.0.5" +release: "0.0.5" copyright_year: 2017-2018 license: New BSD dependencies: [] diff --git a/lml/_version.py b/lml/_version.py index b5e9002..21b9c1f 100644 --- a/lml/_version.py +++ b/lml/_version.py @@ -1,2 +1,2 @@ -__version__ = "0.0.4" +__version__ = "0.0.5" __author__ = "C.W." diff --git a/setup.py b/setup.py index 997e3ad..72f8f68 100644 --- a/setup.py +++ b/setup.py @@ -5,22 +5,20 @@ import os import sys import codecs from shutil import rmtree - -from setuptools import Command, setup, find_packages - +from setuptools import setup, find_packages, Command PY2 = sys.version_info[0] == 2 PY26 = PY2 and sys.version_info[1] < 7 NAME = 'lml' AUTHOR = 'C.W.' -VERSION = '0.0.4' +VERSION = '0.0.5' EMAIL = 'wangc_2011@hotmail.com' LICENSE = 'New BSD' DESCRIPTION = ( 'Load me later. A lazy plugin management system.' ) URL = 'https://github.com/chfw/lml' -DOWNLOAD_URL = '%s/archive/0.0.4.tar.gz' % URL +DOWNLOAD_URL = '%s/archive/0.0.5.tar.gz' % URL FILES = ['README.rst', 'CHANGELOG.rst'] KEYWORDS = [ 'python', @@ -48,8 +46,8 @@ EXTRAS_REQUIRE = {} # You do not need to read beyond this line PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format( sys.executable) -GS_COMMAND = ('gs lml v0.0.4 ' + - "Find 0.0.4 in changelog for more details") +GS_COMMAND = ('gs lml v0.0.5 ' + + "Find 0.0.5 in changelog for more details") NO_GS_MESSAGE = ('Automatic github release is disabled. ' + 'Please install gease to enable it.') UPLOAD_FAILED_MSG = (