Skip to content

Commit e450170

Browse files
committed
synchronize with pyexcel-commons
1 parent 07cff73 commit e450170

File tree

7 files changed

+12
-9
lines changed

7 files changed

+12
-9
lines changed

.moban.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ targets:
1313
- LICENSE: LICENSE.jj2
1414
- MANIFEST.in: MANIFEST.in.jj2
1515
- "tests/requirements.txt": "tests/requirements.txt"
16+
- test.sh: test.sh.jj2
17+
- test.bat: test.sh.jj2

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ before_install:
1919
script:
2020
make test
2121
after_success:
22-
codecov
22+
codecov

README.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pyexcel-xls - Let you focus on data, instead of xls format
1313
Known constraints
1414
==================
1515

16-
Fonts, colors and charts are not supported.
16+
Fonts, colors and charts are not supported.
1717

1818
Installation
1919
================================================================================
@@ -253,7 +253,6 @@ On Windows systems, please issue this command::
253253

254254
> test.bat
255255

256-
257256
Known Issues
258257
=============
259258

@@ -265,4 +264,4 @@ Known Issues
265264

266265
>>> import os
267266
>>> os.unlink("your_file.xls")
268-
>>> os.unlink("another_file.xls")
267+
>>> os.unlink("another_file.xls")

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,4 +248,4 @@
248248
#texinfo_show_urls = 'footnote'
249249

250250
# If true, do not generate a @detailmenu in the "Top" node's menu.
251-
#texinfo_no_detailmenu = False
251+
#texinfo_no_detailmenu = False

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
'xlwt-future',
2828
]
2929

30-
EXTRAS_REQUIRE = {}
30+
EXTRAS_REQUIRE = {
31+
}
3132

3233
CLASSIFIERS = [
3334
'Topic :: Office/Business',
@@ -77,4 +78,4 @@ def read(afile):
7778
tests_require=['nose'],
7879
license=LICENSE,
7980
classifiers=CLASSIFIERS
80-
)
81+
)

test.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
nosetests --with-cov --cov pyexcel_xls --cov tests --with-doctest --doctest-extension=.rst tests README.rst
1+
pip freeze
2+
nosetests --with-cov --cov pyexcel_xls --cov tests --with-doctest --doctest-extension=.rst tests README.rst pyexcel_xls

test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
pip freeze
2-
nosetests --with-cov --cov pyexcel_xls --cov tests --with-doctest --doctest-extension=.rst tests README.rst
2+
nosetests --with-cov --cov pyexcel_xls --cov tests --with-doctest --doctest-extension=.rst tests README.rst pyexcel_xls

0 commit comments

Comments
 (0)