Skip to content

Commit a852495

Browse files
committed
🥚 🎡 reglease 0.5.20
1 parent e65e939 commit a852495

File tree

8 files changed

+58
-33
lines changed

8 files changed

+58
-33
lines changed

.moban.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
requires:
22
- type: git
33
url: https://github.com/moremoban/pypi-mobans
4+
branch: dev
45
submodule: true
56
- https://github.com/pyexcel/pyexcel-mobans
67
configuration:

.travis.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ python:
1515
stages:
1616
- test
1717
- lint
18+
- moban
1819

1920
.disable_global: &disable_global
2021
addons: false
@@ -36,9 +37,17 @@ stages:
3637
submodules: false
3738
python: 3.6
3839
stage: lint
39-
install: pip install flake8
4040
script: make lint
4141

42+
.moban: &moban
43+
<<: *disable_global
44+
python: 3.6
45+
stage: moban
46+
install: pip install moban>=0.0.4
47+
script:
48+
- moban
49+
- git diff --exit-code
50+
4251
jobs:
4352
include:
4453
- *moban

CHANGELOG.rst

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Change log
22
================================================================================
33

4+
0.5.20 - 17.7.2019
5+
--------------------------------------------------------------------------------
6+
7+
updated
8+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9+
10+
#. `#70 <https://github.com/pyexcel/pyexcel-io/issues/70>`_: when the given file
11+
is a root directory, the error shall read it is not a file
12+
413
0.5.19 - 14.7.2019
514
--------------------------------------------------------------------------------
615

changelog.yml

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: pyexcel-io
22
organisation: pyexcel
33
releases:
4+
- changes:
5+
- action: updated
6+
details:
7+
- '`#70`: when the given file is a root directory, the error shall read it is not a file'
8+
version: 0.5.20
9+
date: 17.7.2019
410
- changes:
511
- action: updated
612
details:

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
copyright = '2015-2019 Onni Software Ltd.'
2727
author = 'C.W.'
2828
# The short X.Y version
29-
version = '0.5.19'
29+
version = '0.5.20'
3030
# The full version, including alpha/beta/rc tags
31-
release = '0.5.19'
31+
release = '0.5.20'
3232

3333
# -- General configuration ---------------------------------------------------
3434

lint.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
pip install flake8
12
flake8 . --exclude=.moban.d,docs --builtins=unicode,xrange,long

pyexcel-io.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ overrides: "pyexcel.yaml"
22
project: "pyexcel-io"
33
name: pyexcel-io
44
nick_name: io
5-
version: 0.5.19
6-
current_version: 0.5.19
7-
release: 0.5.19
5+
version: 0.5.20
6+
current_version: 0.5.20
7+
release: 0.5.20
88
copyright_year: 2015-2019
9-
moban_command: false
109
dependencies:
1110
- ordereddict;python_version<"2.7"
1211
- lml>=0.0.4

setup.py

+26-26
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@
2929

3030
NAME = "pyexcel-io"
3131
AUTHOR = "C.W."
32-
VERSION = "0.5.19"
32+
VERSION = "0.5.20"
3333
3434
LICENSE = "New BSD"
3535
DESCRIPTION = (
36-
"A python library to read and write structured data in csv, zipped csv"
37-
+ "format and to/from databases"
36+
"A python library to read and write structured data in csv, zipped csv" +
37+
"format and to/from databases"
3838
)
3939
URL = "https://github.com/pyexcel/pyexcel-io"
40-
DOWNLOAD_URL = "%s/archive/0.5.19.tar.gz" % URL
40+
DOWNLOAD_URL = "%s/archive/0.5.20.tar.gz" % URL
4141
FILES = ["README.rst", "CHANGELOG.rst"]
4242
KEYWORDS = [
4343
"python",
@@ -60,38 +60,37 @@
6060
"Programming Language :: Python :: 3.4",
6161
"Programming Language :: Python :: 3.5",
6262
"Programming Language :: Python :: 3.6",
63+
6364
"Programming Language :: Python :: 3.7",
65+
6466
"Programming Language :: Python :: 3.8",
65-
"License :: OSI Approved :: BSD License",
66-
"Programming Language :: Python :: Implementation :: PyPy",
67+
68+
'License :: OSI Approved :: BSD License',
69+
'Programming Language :: Python :: Implementation :: PyPy'
6770
]
6871

69-
INSTALL_REQUIRES = ["lml>=0.0.4"]
72+
INSTALL_REQUIRES = [
73+
"lml>=0.0.4",
74+
]
7075
SETUP_COMMANDS = {}
7176

7277
if PY26:
73-
INSTALL_REQUIRES.append("ordereddict")
78+
INSTALL_REQUIRES.append('ordereddict')
7479

7580
PACKAGES = find_packages(exclude=["ez_setup", "examples", "tests"])
7681
EXTRAS_REQUIRE = {
77-
"xls": ["pyexcel-xls>=0.5.0"],
78-
"xlsx": ["pyexcel-xlsx>=0.5.0"],
79-
"ods": ["pyexcel-ods3>=0.5.0"],
82+
"xls": ['pyexcel-xls>=0.5.0'],
83+
"xlsx": ['pyexcel-xlsx>=0.5.0'],
84+
"ods": ['pyexcel-ods3>=0.5.0'],
8085
}
8186
# You do not need to read beyond this line
82-
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(
83-
sys.executable
84-
)
85-
GS_COMMAND = (
86-
"gs pyexcel-io v0.5.19 " + "Find 0.5.19 in changelog for more details"
87-
)
88-
NO_GS_MESSAGE = (
89-
"Automatic github release is disabled. "
90-
+ "Please install gease to enable it."
91-
)
87+
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
88+
GS_COMMAND = ("gs pyexcel-io v0.5.20 " +
89+
"Find 0.5.20 in changelog for more details")
90+
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
91+
"Please install gease to enable it.")
9292
UPLOAD_FAILED_MSG = (
93-
'Upload failed. please run "%s" yourself.' % PUBLISH_COMMAND
94-
)
93+
'Upload failed. please run "%s" yourself.' % PUBLISH_COMMAND)
9594
HERE = os.path.abspath(os.path.dirname(__file__))
9695

9796

@@ -134,7 +133,9 @@ def run(self):
134133
sys.exit()
135134

136135

137-
SETUP_COMMANDS.update({"publish": PublishCommand})
136+
SETUP_COMMANDS.update({
137+
"publish": PublishCommand
138+
})
138139

139140

140141
def has_gease():
@@ -145,7 +146,6 @@ def has_gease():
145146
"""
146147
try:
147148
import gease # noqa
148-
149149
return True
150150
except ImportError:
151151
return False
@@ -213,5 +213,5 @@ def filter_out_test_code(file_handle):
213213
include_package_data=True,
214214
zip_safe=False,
215215
classifiers=CLASSIFIERS,
216-
cmdclass=SETUP_COMMANDS,
216+
cmdclass=SETUP_COMMANDS
217217
)

0 commit comments

Comments
 (0)