Skip to content

Commit a9e8909

Browse files
committed
Updated CHANGELOG.md and version
1 parent d4fd9fa commit a9e8909

File tree

5 files changed

+19
-8
lines changed

5 files changed

+19
-8
lines changed

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@
2020
],
2121
"python.linting.pycodestyleEnabled": true,
2222
"python.formatting.provider": "black",
23+
"esbonio.sphinx.confDir": "",
2324
}

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
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

515
Changes:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Simple example of ``guidata`` datasets embedded in an application window:
1313
See [documentation](https://guidata.readthedocs.io/en/latest/) for more details on
1414
the 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
1717
CECILL License (see ``Licence_CeCILL_V2-en.txt``).
1818

1919
## Overview

guidata/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
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

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@
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
2624
import os
2725
import os.path as osp
2826
import shutil
29-
import atexit
3027
import 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

3535
LIBNAME = "guidata"
3636
from guidata import __version__ as version
@@ -49,7 +49,7 @@
4949
5050
See `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/

0 commit comments

Comments
 (0)