diff --git a/.travis.yml b/.travis.yml index 02c7b63..c5cc65c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,3 @@ - sudo: false dist: xenial language: python @@ -16,34 +15,53 @@ python: stages: - test - lint + - moban .disable_global: &disable_global + addons: false + cache: false + env: {} + python: false before_install: false - install: true + install: false before_script: false + script: false after_success: false after_failure: false + before_deploy: false + deploy: false .lint: &lint <<: *disable_global + git: + submodules: false python: 3.6 stage: lint install: pip install flake8 script: flake8 +.moban: &moban + <<: *disable_global + python: 3.6 + stage: moban + install: pip install moban>=0.0.4 + script: + - moban + - git diff --exit-code + jobs: include: + - *moban - *lint stage: test -script: make test - before_install: - if [[ -f min_requirements.txt && "$MINREQ" -eq 1 ]]; then mv min_requirements.txt requirements.txt ; fi - - test ! -f rnd_requirements.txt || pip install --no-deps -r rnd_requirements.txt + - test ! -f rnd_requirements.txt || + pip install --no-deps -r rnd_requirements.txt - test ! -f rnd_requirements.txt || pip install -r rnd_requirements.txt ; - pip install -r tests/requirements.txt script: diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c4641e5..56bd803 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Change log ================================================================================ +0.0.7 - 04-05-2019 +-------------------------------------------------------------------------------- + +Updated +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +#. use pypi-mobans version 0.0.7 + 0.0.5 - 04-05-2019 -------------------------------------------------------------------------------- diff --git a/changelog.yml b/changelog.yml index 5a56f0d..61cf5af 100644 --- a/changelog.yml +++ b/changelog.yml @@ -1,6 +1,12 @@ name: "pypi-mobans" organisation: moremoban releases: +- changes: + - action: Updated + details: + - use pypi-mobans version 0.0.7 + date: 04-05-2019 + version: 0.0.7 - changes: - action: Updated details: diff --git a/docs/source/conf.py b/docs/source/conf.py index d7f6257..eaa484c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,9 +25,9 @@ copyright = '2018-2019 Onni Software Ltd. and its contributors' author = 'C.W.' # The short X.Y version -version = '0.0.5' +version = '0.0.7' # The full version, including alpha/beta/rc tags -release = '0.0.5' +release = '0.0.7' # -- General configuration --------------------------------------------------- @@ -39,9 +39,6 @@ # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] -# The master toctree document. -master_doc = '' - # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. # diff --git a/pypi-mobans-pkg.yml b/pypi-mobans-pkg.yml index 75d45eb..7a3ff32 100644 --- a/pypi-mobans-pkg.yml +++ b/pypi-mobans-pkg.yml @@ -3,9 +3,9 @@ organisation: "moremoban" author: "C.W." contact: "wangc_2011@hotmail.com" company: "Onni Software Ltd. and its contributors" -version: "0.0.5" -current_version: "0.0.5" -release: "0.0.5" +version: "0.0.7" +current_version: "0.0.7" +release: "0.0.7" copyright_year: 2018-2019 license: public license dependencies: diff --git a/pypi_mobans_pkg/_version.py b/pypi_mobans_pkg/_version.py index 21b9c1f..5dc9d91 100644 --- a/pypi_mobans_pkg/_version.py +++ b/pypi_mobans_pkg/_version.py @@ -1,2 +1,2 @@ -__version__ = "0.0.5" +__version__ = "0.0.7" __author__ = "C.W." diff --git a/pypi_mobans_pkg/resources b/pypi_mobans_pkg/resources index 5948547..07d2f97 160000 --- a/pypi_mobans_pkg/resources +++ b/pypi_mobans_pkg/resources @@ -1 +1 @@ -Subproject commit 59485471ba95dfde7f684aa9c783ff58468ac249 +Subproject commit 07d2f97fcb8c6658de571ee42ee007334e75aa5c diff --git a/setup.py b/setup.py index 00c74f9..1eef0ab 100644 --- a/setup.py +++ b/setup.py @@ -29,14 +29,14 @@ NAME = "pypi-mobans-pkg" AUTHOR = "C.W." -VERSION = "0.0.5" +VERSION = "0.0.7" EMAIL = "wangc_2011@hotmail.com" LICENSE = "public license" DESCRIPTION = ( "Scaffolding mobans for your Python project." ) URL = "https://github.com/moremoban/pypi-mobans-pkg" -DOWNLOAD_URL = "%s/archive/0.0.5.tar.gz" % URL +DOWNLOAD_URL = "%s/archive/0.0.7.tar.gz" % URL FILES = ["README.rst", "CHANGELOG.rst"] KEYWORDS = [ "python", @@ -70,8 +70,8 @@ } # 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 pypi-mobans-pkg v0.0.5 " + - "Find 0.0.5 in changelog for more details") +GS_COMMAND = ("gs pypi-mobans-pkg v0.0.7 " + + "Find 0.0.7 in changelog for more details") NO_GS_MESSAGE = ("Automatic github release is disabled. " + "Please install gease to enable it.") UPLOAD_FAILED_MSG = (