Skip to content

Commit 782fdaa

Browse files
committed
update requirements
1 parent c09c716 commit 782fdaa

File tree

5 files changed

+17
-16
lines changed

5 files changed

+17
-16
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
project = u'pyramid-excel'
2323
copyright = u'2015-2017 Onni Software Ltd.'
2424
version = '0.0.4'
25-
release = '0.0.4'
25+
release = '0.0.5'
2626
exclude_patterns = []
2727
pygments_style = 'sphinx'
2828
html_theme = 'pyramid'

docs/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
:Source code: http://github.com/pyexcel/pyramid-excel.git
1111
:Issues: http://github.com/pyexcel/pyramid-excel/issues
1212
:License: New BSD License
13+
:Development: |release|
1314
:Released: |version|
1415
:Generated: |today|
1516

pyramid_excel.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
overrides: "pyexcel.yaml"
22
name: "pyramid-excel"
3-
version: 0.0.4
4-
current_version: 0.0.4
3+
version: 0.0.5
4+
current_version: 0.0.5
55
release: 0.0.4
66
webframework: Pyramid
77
dependencies:
8-
- pyexcel>=0.2.2
9-
- pyexcel-webio>=0.0.7
8+
- pyexcel>=0.5.1.1
9+
- pyexcel-webio>=0.1.2
1010
- Pyramid>=1.4.9
1111
extra_dependencies:
1212
- xls:
13-
- pyexcel-xls>=0.1.0
13+
- pyexcel-xls>=0.4.0
1414
- xlsx:
15-
- pyexcel-xlsx>=0.1.0
15+
- pyexcel-xlsx>=0.4.0
1616
- ods:
17-
- pyexcel-ods3>=0.1.0
17+
- pyexcel-ods3>=0.4.0
1818
description: |
1919
A pyramid extension that provides one application programming interface to read and write data in different excel file formats

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pyexcel>=0.2.2
2-
pyexcel-webio>=0.0.7
1+
pyexcel>=0.5.1.1
2+
pyexcel-webio>=0.1.2
33
Pyramid>=1.4.9

setup.py

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

1111
NAME = 'pyramid-excel'
1212
AUTHOR = 'C.W.'
13-
VERSION = '0.0.4'
13+
VERSION = '0.0.5'
1414
EMAIL = 'wangc_2011@hotmail.com'
1515
LICENSE = 'New BSD'
1616
DESCRIPTION = (
@@ -57,17 +57,17 @@
5757
]
5858

5959
INSTALL_REQUIRES = [
60-
'pyexcel>=0.2.2',
61-
'pyexcel-webio>=0.0.7',
60+
'pyexcel>=0.5.1.1',
61+
'pyexcel-webio>=0.1.2',
6262
'Pyramid>=1.4.9',
6363
]
6464

6565

6666
PACKAGES = find_packages(exclude=['ez_setup', 'examples', 'tests'])
6767
EXTRAS_REQUIRE = {
68-
'xls': ['pyexcel-xls>=0.1.0'],
69-
'xlsx': ['pyexcel-xlsx>=0.1.0'],
70-
'ods': ['pyexcel-ods3>=0.1.0'],
68+
'xls': ['pyexcel-xls>=0.4.0'],
69+
'xlsx': ['pyexcel-xlsx>=0.4.0'],
70+
'ods': ['pyexcel-ods3>=0.4.0'],
7171
}
7272

7373

0 commit comments

Comments
 (0)