-
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.
update documentation and get ready for a quick fix
- Loading branch information
Showing
9 changed files
with
43 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -540,3 +540,7 @@ cscope.files | |
cscope.out | ||
cscope.in.out | ||
cscope.po.out | ||
|
||
|
||
# remove moban hash dictionary | ||
.moban.hashes |
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
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 |
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 |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
|
||
NAME = "gitfs2" | ||
AUTHOR = "C.W." | ||
VERSION = "0.0.3" | ||
VERSION = "0.0.4" | ||
EMAIL = "[email protected]" | ||
LICENSE = "MIT" | ||
ENTRY_POINTS = { | ||
|
@@ -44,7 +44,7 @@ | |
"Python file system 2 over GitPython" | ||
) | ||
URL = "https://github.com/moremoban/gitfs2" | ||
DOWNLOAD_URL = "%s/archive/0.0.3.tar.gz" % URL | ||
DOWNLOAD_URL = "%s/archive/0.0.4.tar.gz" % URL | ||
FILES = ["README.rst", "CHANGELOG.rst"] | ||
KEYWORDS = [ | ||
"python", | ||
|
@@ -79,13 +79,14 @@ | |
} | ||
# 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 gitfs2 v0.0.3 " + | ||
"Find 0.0.3 in changelog for more details") | ||
HERE = os.path.abspath(os.path.dirname(__file__)) | ||
|
||
GS_COMMAND = ("gease gitfs2 v0.0.4 " + | ||
"Find 0.0.4 in changelog for more details") | ||
NO_GS_MESSAGE = ("Automatic github release is disabled. " + | ||
"Please install gease to enable it.") | ||
UPLOAD_FAILED_MSG = ( | ||
'Upload failed. please run "%s" yourself.' % PUBLISH_COMMAND) | ||
HERE = os.path.abspath(os.path.dirname(__file__)) | ||
|
||
|
||
class PublishCommand(Command): | ||
|
@@ -131,7 +132,6 @@ def run(self): | |
"publish": PublishCommand | ||
}) | ||
|
||
|
||
def has_gease(): | ||
""" | ||
test if github release command is installed | ||
|
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