From 4d9d69e0a6b684d946c08535cb308f28f0e3be27 Mon Sep 17 00:00:00 2001 From: Prodesire Date: Mon, 10 Dec 2018 21:29:16 +0800 Subject: [PATCH] change version to 0.7.1, and improve make --- Makefile | 4 ++-- pydu/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 3bbcabd..49c2b44 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,7 @@ help: init: pip install -r requirements-dev.txt + npm i docsify-cli -g test: test-py2 test-py3 @@ -52,8 +53,7 @@ publish: rm -rf build dist *.egg-info .eggs docs: - cd docs && make html - @echo "\033[95m\n\nBuild successful! View the docs homepage at docs/_build/html/index.html.\n\033[0m" + docsify serve docs clean: clean-pyc clean-build diff --git a/pydu/__init__.py b/pydu/__init__.py index e86adf8..d3e8c3e 100644 --- a/pydu/__init__.py +++ b/pydu/__init__.py @@ -3,7 +3,7 @@ Useful data structures, utils for Python. """ from __future__ import absolute_import -__version__ = '0.7.0' +__version__ = '0.7.1' # Set logging handler to avoid "No handler found" warnings.