Skip to content

Commit 4c84da7

Browse files
committed
increment version
1 parent fad3186 commit 4c84da7

File tree

5 files changed

+13
-21
lines changed

5 files changed

+13
-21
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
project = u'Flask-Excel'
2222
copyright = u'2015-2017 Onni Software Ltd.'
2323
version = '0.0.6'
24-
release = '0.0.6'
24+
release = '0.0.7'
2525
exclude_patterns = []
2626
pygments_style = 'sphinx'
2727
import sys # noqa

flask_excel.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
overrides: "pyexcel.yaml"
22
name: "Flask-Excel"
3-
version: 0.0.6
4-
current_version: 0.0.6
3+
version: 0.0.7
4+
current_version: 0.0.7
55
release: 0.0.6
66
webframework: Flask
77
dependencies:
8-
- pyexcel>=0.2.2
9-
- pyexcel-webio>=0.0.7
8+
- pyexcel-webio>=0.1.2
109
- Flask>=0.10.1
1110
extra_dependencies:
1211
- xls:
13-
- pyexcel-xls>=0.1.0
12+
- pyexcel-xls>=0.4.0
1413
- xlsx:
15-
- pyexcel-xlsx>=0.1.0
14+
- pyexcel-xlsx>=0.4.0
1615
- ods:
17-
- pyexcel-ods3>=0.1.0
16+
- pyexcel-ods3>=0.4.0
1817
description: |
1918
A flask extension that provides one application programming interface to read and write data in different excel file formats

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
pyexcel>=0.2.2
2-
pyexcel-webio>=0.0.7
1+
pyexcel-webio>=0.1.2
32
Flask>=0.10.1

rnd_requirements.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,2 @@
1-
https://github.com/chfw/lml/archive/master.zip
2-
https://github.com/pyexcel/pyexcel-io/archive/v0.4.x.zip
31
https://github.com/pyexcel/pyexcel/archive/master.zip
4-
https://github.com/pyexcel/pyexcel-xls/archive/v0.4.x.zip
5-
https://github.com/pyexcel/pyexcel-xlsx/archive/v0.4.x.zip
6-
https://github.com/pyexcel/pyexcel-ods3/archive/v0.4.x.zip
72
https://github.com/pyexcel/pyexcel-webio/archive/master.zip

setup.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
NAME = 'Flask-Excel'
99
AUTHOR = 'C.W.'
10-
VERSION = '0.0.6'
10+
VERSION = '0.0.7'
1111
EMAIL = 'wangc_2011@hotmail.com'
1212
LICENSE = 'New BSD'
1313
DESCRIPTION = (
@@ -56,17 +56,16 @@
5656
]
5757

5858
INSTALL_REQUIRES = [
59-
'pyexcel>=0.2.2',
60-
'pyexcel-webio>=0.0.7',
59+
'pyexcel-webio>=0.1.2',
6160
'Flask>=0.10.1',
6261
]
6362

6463

6564
PACKAGES = find_packages(exclude=['ez_setup', 'examples', 'tests'])
6665
EXTRAS_REQUIRE = {
67-
'xls': ['pyexcel-xls>=0.1.0'],
68-
'xlsx': ['pyexcel-xlsx>=0.1.0'],
69-
'ods': ['pyexcel-ods3>=0.1.0'],
66+
'xls': ['pyexcel-xls>=0.4.0'],
67+
'xlsx': ['pyexcel-xlsx>=0.4.0'],
68+
'ods': ['pyexcel-ods3>=0.4.0'],
7069
}
7170

7271

0 commit comments

Comments
 (0)