Skip to content

Commit 1aa09f1

Browse files
committed
release 0.0.7
1 parent c8edbb3 commit 1aa09f1

File tree

5 files changed

+24
-7
lines changed

5 files changed

+24
-7
lines changed

Diff for: CHANGELOG.rst

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

4+
0.0.7 - 20.07.2017
5+
--------------------------------------------------------------------------------
6+
7+
Updated
8+
********************************************************************************
9+
10+
#. the intialization method has been modified. please call init_excel(app)
11+
before you do anything else. This change was made in order to apply for
12+
approved flask extension status. And by doing this change, it will support
13+
multiple Flask apps and only the app that was initialized with init_excel
14+
gets Flask-Excel and other apps in your BIG app won't get affected.
15+
416
0.0.6 - 22.06.2017
517
--------------------------------------------------------------------------------
618

Diff for: docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
project = u'Flask-Excel'
2222
copyright = u'2015-2017 Onni Software Ltd.'
23-
version = '0.0.6'
23+
version = '0.0.7'
2424
release = '0.0.7'
2525
exclude_patterns = []
2626
pygments_style = 'sphinx'

Diff for: docs/source/index.rst

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
:Source code: http://github.com/pyexcel/Flask-Excel.git
1111
:Issues: http://github.com/pyexcel/Flask-Excel/issues
1212
:License: New BSD License
13-
:Development: |release|
1413
:Released: |version|
1514
:Generated: |today|
1615

Diff for: flask_excel.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ overrides: "pyexcel.yaml"
22
name: "Flask-Excel"
33
version: 0.0.7
44
current_version: 0.0.7
5-
release: 0.0.6
5+
release: 0.0.7
66
webframework: Flask
77
dependencies:
88
- pyexcel-webio>=0.1.2

Diff for: setup.py

+10-4
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@
1515
'to read and write data in different excel file formats' +
1616
''
1717
)
18+
URL = 'https://github.com/pyexcel/Flask-Excel'
19+
DOWNLOAD_URL = '%s/archive/0.0.7.tar.gz' % URL
1820
FILES = ['README.rst', 'CHANGELOG.rst']
1921
KEYWORDS = [
20-
'excel',
21-
'python',
22-
'pyexcel',
2322
'xls',
2423
'xlsx',
2524
'ods',
2625
'csv',
2726
'API',
2827
'Flask'
28+
'python'
2929
]
3030

3131
CLASSIFIERS = [
@@ -104,7 +104,11 @@ def filter_out_test_code(file_handle):
104104
found_test_code = False
105105
yield line
106106
else:
107-
yield line
107+
for keyword in ['|version|', '|today|']:
108+
if keyword in line:
109+
break
110+
else:
111+
yield line
108112

109113

110114
if __name__ == '__main__':
@@ -114,6 +118,8 @@ def filter_out_test_code(file_handle):
114118
version=VERSION,
115119
author_email=EMAIL,
116120
description=DESCRIPTION,
121+
url=URL,
122+
download_url=DOWNLOAD_URL,
117123
long_description=read_files(*FILES),
118124
license=LICENSE,
119125
keywords=KEYWORDS,

0 commit comments

Comments
 (0)