Skip to content

Commit

Permalink
Merge pull request #377 from moremoban/dev
Browse files Browse the repository at this point in the history
python setup.py checkdocs (#376)
  • Loading branch information
chfw authored May 2, 2020
2 parents c2c1c2d + ed6eb16 commit e8bd2e0
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 13 deletions.
6 changes: 6 additions & 0 deletions .moban.cd/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: moban
organisation: moremoban
releases:
- changes:
- action: Added
details:
- "Added continuous check in travis for setup.py descriptions. No impact to moban user."
date: 2.5.2020
version: 0.7.3
- changes:
- action: Added
details:
Expand Down
6 changes: 3 additions & 3 deletions .moban.cd/moban.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ organisation: moremoban
author: C. W.
contact: wangc_2011@hotmail.com
license: MIT
version: 0.7.2
current_version: 0.7.2
release: 0.7.2
version: 0.7.3
current_version: 0.7.3
release: 0.7.3
branch: master
master: index
command_line_interface: "moban"
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Change log
================================================================================

0.7.3 - 2.5.2020
--------------------------------------------------------------------------------

**Added**

#. Added continuous check in travis for setup.py descriptions. No impact to
moban user.

0.7.2 - 1.5.2020
--------------------------------------------------------------------------------

Expand Down
5 changes: 2 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@ organisation.

And here is a list of other usages:

1. `Django Mobans <https://github.com/django-mobans>`_, templates for django, docker etc.
1. `Math Sheets <https://github.com/chfw/math-sheets>`_, generate custom math sheets
in pdf
#. `Django Mobans <https://github.com/django-mobans>`_, templates for django, docker etc.
#. `Math Sheets <https://github.com/chfw/math-sheets>`_, generate custom math sheets in pdf


Vision
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
copyright = '2017-2020 Onni Software Ltd.'
author = 'C. W.'
# The short X.Y version
version = '0.7.2'
version = '0.7.3'
# The full version, including alpha/beta/rc tags
release = '0.7.2'
release = '0.7.3'

# -- General configuration ---------------------------------------------------

Expand Down
1 change: 1 addition & 0 deletions lint.sh
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
flake8 --max-line-length=88 --exclude=.moban.d,docs --ignore=W503,W504
python setup.py checkdocs
2 changes: 1 addition & 1 deletion moban/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.7.2"
__version__ = "0.7.3"
__author__ = "C. W."
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

NAME = "moban"
AUTHOR = "C. W."
VERSION = "0.7.2"
VERSION = "0.7.3"
EMAIL = "wangc_2011@hotmail.com"
LICENSE = "MIT"
ENTRY_POINTS = {
Expand All @@ -53,7 +53,7 @@
"General purpose static text generator"
)
URL = "https://github.com/moremoban/moban"
DOWNLOAD_URL = "%s/archive/0.7.2.tar.gz" % URL
DOWNLOAD_URL = "%s/archive/0.7.3.tar.gz" % URL
FILES = ["README.rst", "CONTRIBUTORS.rst", "CHANGELOG.rst"]
KEYWORDS = [
"python",
Expand Down Expand Up @@ -97,8 +97,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 moban v0.7.2 " +
"Find 0.7.2 in changelog for more details")
GS_COMMAND = ("gs moban v0.7.3 " +
"Find 0.7.3 in changelog for more details")
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
"Please install gease to enable it.")
UPLOAD_FAILED_MSG = (
Expand Down
2 changes: 2 additions & 0 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@ pypifs
gitfs2
jinja2-python-version>=1.1.2
httpfs
collective.checkdocs
Pygments

0 comments on commit e8bd2e0

Please sign in to comment.