Skip to content

Commit

Permalink
update docs and pump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Mar 29, 2017
1 parent 86f934a commit 056b67b
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 17 deletions.
6 changes: 0 additions & 6 deletions .moban.d/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@
{%endblock %}

{%block additional_classifiers%}
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: PyPy'
{%endblock%}}

11 changes: 10 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,16 @@ Updated

#. `#19 <https://github.com/pyexcel/pyexcel-io/issues/19>`__,
use cString by default


0.3.3 - unreleased
--------------------------------------------------------------------------------

Updated
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

#. `#31 <https://github.com/pyexcel/pyexcel-io/issues/31>`_, support pyinstaller


0.3.2 - 26.01.2017
--------------------------------------------------------------------------------

Expand Down
21 changes: 15 additions & 6 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# -*- coding: utf-8 -*-
DESCRIPTION = (
'A python library to read and write structured data in csv, zipped csv ' +
'format and to/from databases' +
''
)
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
Expand All @@ -17,8 +22,8 @@

project = u'pyexcel-io'
copyright = u'2015-2017 Onni Software Ltd.'
version = '0.3.1'
release = '0.3.2'
version = '0.3.2'
release = '0.3.3'
exclude_patterns = []
pygments_style = 'sphinx'
html_theme = 'default'
Expand All @@ -32,15 +37,19 @@ def setup(app):
htmlhelp_basename = 'pyexcel-iodoc'
latex_elements = {}
latex_documents = [
('index', 'pyexcel-io.tex', u'pyexcel-io Documentation',
('index', 'pyexcel-io.tex',
'pyexcel-io Documentation',
'Onni Software Ltd.', 'manual'),
]
man_pages = [
('index', 'pyexcel-io', u'pyexcel-io Documentation',
('index', 'pyexcel-io',
'pyexcel-io Documentation',
[u'Onni Software Ltd.'], 1)
]
texinfo_documents = [
('index', 'pyexcel-io', u'pyexcel-io Documentation',
'Onni Software Ltd.', 'pyexcel-io', 'One line description of project.',
('index', 'pyexcel-io',
'pyexcel-io Documentation',
'Onni Software Ltd.', 'pyexcel-io',
DESCRIPTION,
'Miscellaneous'),
]
4 changes: 2 additions & 2 deletions pyexcel_io.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
overrides: "pyexcel.yaml"
name: "pyexcel-io"
nick_name: io
version: 0.3.2
release: 0.3.1
version: 0.3.3
release: 0.3.2
dependencies:
- ordereddict;python_version<"2.7"
extra_dependencies:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

NAME = 'pyexcel-io'
AUTHOR = 'C.W.'
VERSION = '0.3.2'
VERSION = '0.3.3'
EMAIL = 'wangc_2011 (at) hotmail.com'
LICENSE = 'New BSD'
DESCRIPTION = (
Expand All @@ -36,12 +36,12 @@
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy'
]

Expand Down

0 comments on commit 056b67b

Please sign in to comment.