File tree 7 files changed +37
-15
lines changed
7 files changed +37
-15
lines changed Original file line number Diff line number Diff line change
1
+ requires :
2
+ - type : git
3
+ url : https://github.com/moremoban/pypi-mobans
4
+ submodule : true
5
+ - https://github.com/pyexcel/pyexcel-mobans
1
6
configuration :
2
- configuration_dir : " commons/ config"
7
+ configuration_dir : " pyexcel-mobans: config"
3
8
template_dir :
4
- - " commons/ templates"
5
- - " setupmobans/ templates"
9
+ - " pyexcel-mobans: templates"
10
+ - " pypi-mobans: templates"
6
11
- " .moban.d"
7
12
configuration : pyexcel-io.yml
8
13
targets :
@@ -12,7 +17,6 @@ targets:
12
17
- requirements.txt : requirements.txt.jj2
13
18
- " tests/requirements.txt " : " tests/requirements.txt"
14
19
- LICENSE : NEW_BSD_LICENSE.jj2
15
- - MANIFEST.in : MANIFEST.in.jj2
16
20
- test.sh : test.script.jj2
17
21
- test.bat : test.script.jj2
18
22
- README.rst : README.rst
Original file line number Diff line number Diff line change 1
1
Change log
2
2
================================================================================
3
3
4
- 0.5.13 - 21.02.2019
4
+ 0.5.14 - 21.02.2019
5
5
--------------------------------------------------------------------------------
6
6
7
7
updated
@@ -10,6 +10,15 @@ updated
10
10
#. `#65 <https://github.com/pyexcel/pyexcel-io/issues/65 >`_: add
11
11
tests/__init__.py because python2.7 setup.py test needs it
12
12
13
+ 0.5.13 - 12.02.2019
14
+ --------------------------------------------------------------------------------
15
+
16
+ updated
17
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18
+
19
+ #. `#63 <https://github.com/pyexcel/pyexcel-io/issues/63 >`_: Version 0.5.12
20
+ prevents xslx and ods plugin from being loaded
21
+
13
22
0.5.12 - 9.02.2019
14
23
--------------------------------------------------------------------------------
15
24
Original file line number Diff line number Diff line change @@ -3,3 +3,6 @@ include LICENSE
3
3
include CHANGELOG.rst
4
4
recursive-include tests *
5
5
recursive-include docs *
6
+ include docs/source/*
7
+ include Makefile
8
+ include test.sh
Original file line number Diff line number Diff line change @@ -5,8 +5,14 @@ releases:
5
5
- action : updated
6
6
details :
7
7
- ' `#65`: add tests/__init__.py because python2.7 setup.py test needs it'
8
- version : 0.5.13
8
+ version : 0.5.14
9
9
date : 21.02.2019
10
+ - changes :
11
+ - action : updated
12
+ details :
13
+ - ' `#63`: Version 0.5.12 prevents xslx and ods plugin from being loaded'
14
+ version : 0.5.13
15
+ date : 12.02.2019
10
16
- changes :
11
17
- action : updated
12
18
details :
Original file line number Diff line number Diff line change 26
26
copyright = 'copyright 2015-2019 Onni Software Ltd.'
27
27
author = 'Onni Software Ltd.'
28
28
# The short X.Y version
29
- version = '0.5.13 '
29
+ version = '0.5.14 '
30
30
# The full version, including alpha/beta/rc tags
31
- release = '0.5.13 '
31
+ release = '0.5.14 '
32
32
33
33
# -- General configuration ---------------------------------------------------
34
34
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ overrides: "pyexcel.yaml"
2
2
project : " pyexcel-io"
3
3
name : pyexcel-io
4
4
nick_name : io
5
- version : 0.5.13
6
- current_version : 0.5.13
5
+ version : 0.5.14
6
+ current_version : 0.5.14
7
7
copyright_year : 2015-2019
8
- release : 0.5.13
8
+ release : 0.5.14
9
9
dependencies :
10
10
- ordereddict;python_version<"2.7"
11
11
- lml>=0.0.4
Original file line number Diff line number Diff line change 29
29
30
30
NAME = 'pyexcel-io'
31
31
AUTHOR = 'C.W.'
32
- VERSION = '0.5.13 '
32
+ VERSION = '0.5.14 '
33
33
34
34
LICENSE = 'New BSD'
35
35
DESCRIPTION = (
36
36
'A python library to read and write structured data in csv, zipped csv' +
37
37
'format and to/from databases'
38
38
)
39
39
URL = 'https://github.com/pyexcel/pyexcel-io'
40
- DOWNLOAD_URL = '%s/archive/0.5.13 .tar.gz' % URL
40
+ DOWNLOAD_URL = '%s/archive/0.5.14 .tar.gz' % URL
41
41
FILES = ['README.rst' , 'CHANGELOG.rst' ]
42
42
KEYWORDS = [
43
43
'python' ,
81
81
# You do not need to read beyond this line
82
82
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi' .format (
83
83
sys .executable )
84
- GS_COMMAND = ('gs pyexcel-io v0.5.13 ' +
85
- "Find 0.5.13 in changelog for more details" )
84
+ GS_COMMAND = ('gs pyexcel-io v0.5.14 ' +
85
+ "Find 0.5.14 in changelog for more details" )
86
86
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
87
87
'Please install gease to enable it.' )
88
88
UPLOAD_FAILED_MSG = (
You can’t perform that action at this time.
0 commit comments