File tree Expand file tree Collapse file tree 7 files changed +35
-10
lines changed
Expand file tree Collapse file tree 7 files changed +35
-10
lines changed Original file line number Diff line number Diff line change 1- name : run_tests
1+ name : Run unit tests on Windows and Mac
22
33on : [push, pull_request]
44
Original file line number Diff line number Diff line change 1+ # .readthedocs.yml
2+ # Read the Docs configuration file
3+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+ # Required
6+ version : 2
7+
8+ # Build documentation in the docs/ directory with Sphinx
9+ sphinx :
10+ configuration : docs/source/conf.py
11+
12+ # Optionally build your docs in additional formats such as PDF
13+ formats :
14+ - pdf
15+
16+ # Optionally set the version of Python and requirements required to build your docs
17+ python :
18+ version : 3.7
Original file line number Diff line number Diff line change 11Change log
22================================================================================
33
4+ 0.6.1 - 1.2.2022
5+ --------------------------------------------------------------------------------
6+
7+ **added **
8+
9+ #. `#28 <https://github.com/pyexcel/pyexcel-ods3/issues/28 >`_: support datetime
10+
4110.6.0 - 8.10.2020
512--------------------------------------------------------------------------------
613
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ In alphabetical order:
99* `Mateusz Konieczny <https://github.com/matkoniecz >`_
1010* `Michael K. <https://github.com/michael-k >`_
1111* `Stephen J. Fuhry <https://github.com/fuhrysteve >`_
12- * `vinraspa <https://github.com/vinraspa >`_
12+ * `Vincent Raspal <https://github.com/vinraspa >`_
Original file line number Diff line number Diff line change 1- Copyright (c) 2015-2021 by Onni Software Ltd. and its contributors
1+ Copyright (c) 2015-2022 by Onni Software Ltd. and its contributors
22All rights reserved.
33
44Redistribution and use in source and binary forms of the software as well
Original file line number Diff line number Diff line change 2222# -- Project information -----------------------------------------------------
2323
2424project = 'pyexcel-ods3'
25- copyright = '2015-2021 Onni Software Ltd.'
25+ copyright = '2015-2022 Onni Software Ltd.'
2626author = 'C.W.'
2727# The short X.Y version
28- version = '0.6.0 '
28+ version = '0.6.1 '
2929# The full version, including alpha/beta/rc tags
30- release = '0.6.0 '
30+ release = '0.6.1 '
3131
3232# -- General configuration ---------------------------------------------------
3333
Original file line number Diff line number Diff line change 3232
3333NAME = "pyexcel-ods3"
3434AUTHOR = "C.W."
35- VERSION = "0.6.0 "
35+ VERSION = "0.6.1 "
36363737LICENSE = "New BSD"
3838DESCRIPTION = (
3939 "A wrapper library to read, manipulate and write data in ods format"
4040)
4141URL = "https://github.com/pyexcel/pyexcel-ods3"
42- DOWNLOAD_URL = "%s/archive/0.6.0 .tar.gz" % URL
42+ DOWNLOAD_URL = "%s/archive/0.6.1 .tar.gz" % URL
4343FILES = ["README.rst" , "CHANGELOG.rst" ]
4444KEYWORDS = [
4545 "python" ,
7777PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi" .format (sys .executable )
7878HERE = os .path .abspath (os .path .dirname (__file__ ))
7979
80- GS_COMMAND = ("gease pyexcel-ods3 v0.6.0 " +
81- "Find 0.6.0 in changelog for more details" )
80+ GS_COMMAND = ("gease pyexcel-ods3 v0.6.1 " +
81+ "Find 0.6.1 in changelog for more details" )
8282NO_GS_MESSAGE = ("Automatic github release is disabled. " +
8383 "Please install gease to enable it." )
8484UPLOAD_FAILED_MSG = (
You can’t perform that action at this time.
0 commit comments