File tree Expand file tree Collapse file tree 5 files changed +19
-8
lines changed
Expand file tree Collapse file tree 5 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 2020 ],
2121 "python.linting.pycodestyleEnabled" : true ,
2222 "python.formatting.provider" : " black" ,
23+ "esbonio.sphinx.confDir" : " " ,
2324}
Original file line number Diff line number Diff line change 11# guidata Releases #
22
3+ ## Version 2.3.1 ##
4+
5+ Bug fixes:
6+
7+ * Fixed critical compatibility issue with Python 3.11 (` codeset ` argument was removed
8+ from ` gettext.translation ` function)
9+ * Fixed support for ` DateTimeItem ` and ` DateItem ` objects serializing (HDF5 and JSON)
10+ * Fixed JSONReader constructor documentation: more explicit docstring
11+ * Fixed test_dataframeeditor.py test script (issue with QApplication creation)
12+
313## Version 2.3.0 ##
414
515Changes:
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Simple example of ``guidata`` datasets embedded in an application window:
1313See [ documentation] ( https://guidata.readthedocs.io/en/latest/ ) for more details on
1414the library and [ changelog] ( CHANGELOG.md ) for recent history of changes.
1515
16- Copyright © 2009-2021 CEA, Pierre Raybaut, licensed under the terms of the
16+ Copyright © 2009-2022 CEA, Pierre Raybaut, licensed under the terms of the
1717CECILL License (see `` Licence_CeCILL_V2-en.txt `` ).
1818
1919## Overview
Original file line number Diff line number Diff line change 1717.. _GoogleGroup: http://groups.google.fr/group/guidata_guiqwt
1818"""
1919
20- __version__ = "2.3.0 "
20+ __version__ = "2.3.1 "
2121
2222# TODO: Investigate the qthelpers test failure (see after if __name__=='__main__')
2323
Original file line number Diff line number Diff line change 2020(see guidata/__init__.py for details)
2121"""
2222
23- import setuptools # analysis:ignore
24- from distutils .core import setup
25- import sys
23+ import atexit
2624import os
2725import os .path as osp
2826import shutil
29- import atexit
3027import subprocess
28+ import sys
29+ from distutils .core import setup
3130
32- from guidata . utils import get_subpackages , get_package_data
31+ import setuptools # analysis:ignore
3332
33+ from guidata .utils import get_package_data , get_subpackages
3434
3535LIBNAME = "guidata"
3636from guidata import __version__ as version
4949
5050See `documentation`_ for more details on the library and `changelog`_ for recent history of changes.
5151
52- Copyright © 2009-2021 CEA, Pierre Raybaut, licensed under the terms of the
52+ Copyright © 2009-2022 CEA, Pierre Raybaut, licensed under the terms of the
5353`CECILL License`_.
5454
5555.. _documentation: https://guidata.readthedocs.io/en/latest/
You can’t perform that action at this time.
0 commit comments