-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from moremoban/dev
fix issue 12
- Loading branch information
Showing
13 changed files
with
139 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
You can do the following with moban: | ||
|
||
.. code-block:: bash | ||
|
||
$ moban -t 'git://github.com/moremoban/pypi-mobans.git!/templates/_version.py.jj2' \ | ||
-c 'git://github.com/moremoban/pypi-mobans.git!/config/data.yml' \ | ||
-o _version.py | ||
Info: Found repo in /Users/jaska/Library/Caches/gitfs2/repos/pypi-mobans | ||
Templating git://github.com/moremoban/pypi-mobans.git!/templates/_version.py.jj2 to _version.py | ||
Templated 1 file. | ||
$ cat _version.py | ||
__version__ = "0.1.1rc3" | ||
__author__ = "C.W." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,9 @@ organisation: "moremoban" | |
author: "C.W." | ||
contact: "[email protected]" | ||
company: "moban dev team" | ||
version: "0.0.3" | ||
current_version: "0.0.3" | ||
release: "0.0.3" | ||
version: "0.0.4" | ||
current_version: "0.0.4" | ||
release: "0.0.4" | ||
copyright_year: 2019 | ||
license: MIT | ||
dependencies: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__version__ = "0.0.3" | ||
__version__ = "0.0.4" | ||
__author__ = "C.W." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
pip install flake8 | ||
flake8 . --exclude=.moban.d,docs,setup.py --builtins=unicode,xrange,long | ||
flake8 --exclude=.moban.d,docs,setup.py --builtins=unicode,xrange,long . && python setup.py checkdocs |
Oops, something went wrong.