- Update to 8.0.0:
- This is a major release that provides support for PySide
6.4 and 6.5 as well as Python 3.11. It includes a number
of backwards-incompatible changes following the example of
Pyface 8.0.0, most notable is moving the traitsui.qt4.*
modules to traitsui.qt.*. As with Pyface 8.0 we include a
backwards-compatibility mode which allows importing from the
'qt4' namespace via:
- setting the ETS toolkit to "qt4"
- setting the ETS_QT4_IMPORTS environment variable
- manually adding appropriate finders to sys.meta_path
- Be strict about 'handler.init()' return values
- Move 'traitsui.qt4.' to 'traitsui.qt.'
- Remove deprecated 'format' trait
- Deprecate imports from traitsui.editors (use
traitsui.editors.api)
- Remove backwards-compatibility mode in undo/redo code
- Support for Python 3.11 and PySide 6.4+
- Fix uses of None in date range editor
- Add comments for Wx-only examples
- Replace uses of "fast_ui" dispatch with "ui" dispatch
- Fix FileDialog selection actions
- Fix regression in Wx version of FileEditor
- Fix missing attribute of InstanceFactoryChocie
- Replace some relative imports in tests
- Update to 7.4.3:
- This is a small bugfix release which resolves some bugs that
have come to light as we get more experience with PySide
6, together with changes to run CI on more recent Python
versions and current Github infrastructure.
OBS-URL: https://build.opensuse.org/request/show/1127266
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-traitsui?expand=0&rev=9
- This is a major release that provides support for PySide
6.4 and 6.5 as well as Python 3.11. It includes a number
of backwards-incompatible changes following the example of
Pyface 8.0.0, most notable is moving the traitsui.qt4.*
modules to traitsui.qt.*. As with Pyface 8.0 we include a
backwards-compatibility mode which allows importing from the
'qt4' namespace via:
- setting the ETS toolkit to "qt4"
- setting the ETS_QT4_IMPORTS environment variable
- manually adding appropriate finders to sys.meta_path
- Be strict about 'handler.init()' return values
- Move 'traitsui.qt4.' to 'traitsui.qt.'
- Remove deprecated 'format' trait
- Deprecate imports from traitsui.editors (use
traitsui.editors.api)
- Remove backwards-compatibility mode in undo/redo code
- Support for Python 3.11 and PySide 6.4+
- Fix uses of None in date range editor
- Add comments for Wx-only examples
- Replace uses of "fast_ui" dispatch with "ui" dispatch
- Fix FileDialog selection actions
- Fix regression in Wx version of FileEditor
- Fix missing attribute of InstanceFactoryChocie
- Replace some relative imports in tests
- Update to 7.4.3:
- This is a small bugfix release which resolves some bugs that
have come to light as we get more experience with PySide
6, together with changes to run CI on more recent Python
versions and current Github infrastructure.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-traitsui?expand=0&rev=16
- Update to 7.2.1
* Explicitly require traits 6.2 and pyface 7.3 (#1666, #1668)
- Release 7.2.0
* TraitsUI 7.2.0 is a minor release which includes numerous bug
fixes, documentation improvements, code maintenance changes,
and enhancements.
* The migration from on_trait_change to observe is underway. As a
result, TraitsUI now requires Traits >= 6.2.
* New display-only VideoEditor (currently only on Qt backend).
Exapnsion of features for the new UITester including the
ability to inspect UI object visibility / enabledness. Also
documentation for testing has been updated.
* Notes on upgrading: This release of TraitsUI now depends on
Traits 6.2+ and pyface 7.2+. Also, deprecated code / modules
have been removed. Namely, the :mod:traitsui.image
<traitsui.image> module which was moved to pyface.image,
editors_gen modules, Editor and EditorFactory factory methods
on Toolkit objects, and more. For a complete list, see PRs in
the "Removals" section. These were all generally unused /
deprecated for sometime. Also, importing directly from
traitsui.editors has been deprecated. Please update imports to
import directly from :mod:traitsui.api or
:mod:traitsui.editors.api.
- Detailed changelog at
https://github.com/enthought/traitsui/releases/tag/7.2.0
- Add traitsui-pr1689-deprecations.patch
* gh#enthought/traitsui#1689 + gh#enthought/traitsui#1681
OBS-URL: https://build.opensuse.org/request/show/946811
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-traitsui?expand=0&rev=15
- Update to 7.1.1
* Fix scrollable trait of a Group not being implemented on Qt
(#1406)
* Fix icon button's clickable area too small for FileEditor and
RangeEditor on Qt and OSX (#1383)
* Fix missing minimize and maximize buttons for dialogs opened
on certain Linux platforms (#1409)
- Release 7.1.0
Highlights of this release
* A new traitsui.testing.api module has been introduced for
testing GUI applications built using TraitsUI. See Testing
TraitsUI Applications for an introduction. Builtin support has
been added for testing several TraitsUI editors. More support
will be added in the future.
* On OSX and Qt, there have been reports of missing UI view
updates after a push button is clicked. While this is
suspected to be a Qt issue, changes have been made to
ButtonEditor, SetEditor and ImageEnumEditor to mitigate the
situation.
* The internal logic for disposing an instance traitsui.ui.UI is
changed as an attempt to resolve AttributeError that occurs
while a nested UI is removed.
Notes on upgrading
* On the issue about Qt button not causing views to update on
OSX, projects that have been working around the issue by
adding GUI().process_events() (or similar) in their
applications may now try to remove those workarounds. However,
the change that mitigates the issue in a production
environment has implications for tests: The button's click
slot is no longer invoked immediately but always invoked by
OBS-URL: https://build.opensuse.org/request/show/874785
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-traitsui?expand=0&rev=13
- version update to 7.0.1
* Fix error from true division of integers for Qt RangeEditor and BoundsEditor
(#999, #1000)
* Fix handling of minimum and maximum datetimes in Qt DatetimeEditor (#803)
* Fix error in wx TabularEditor (#969)
* Fix wx panel error due to alignments (#829)
* Fix various issues in the demo application (#799, #808)
* Fix format_func not used when EnumEditor is initialized with static values
(#848)
* Fix demo application description (#850)
* Fix auto-add functionality in ListStrModel (#860)
* Fix segmentation fault for TabularModel (#871, #873)
* Fix event handling in ListStrEditor and TabularEditor for adding and removing
items (#875)
* Fix TabularAdapter crashes when column number reduces (#897)
* Fix theme pickling issue (#915)
* Fix error from example's tutor.py script (#813)
- use pytest instead of nose for running tests
OBS-URL: https://build.opensuse.org/request/show/832920
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-traitsui?expand=0&rev=11
- Update to 6.1.3:
* Add "bool" to allowed types for TableColumn (#656)
* Fix tabular editor column widths (#652)
* Fix setting valus in DataFrameEditor (#651)
* Allow '...' in addition to ellipsis in text elision (#644)
* Handle invalid values in RangeEditor better (#637)
* Fix multi-select in Qt TabularEditor (#633)
* Fix call to Bind in Wx FileEditor (#628)
* Fixes to doc links in tutorial (#619)
* Remove 3.5 from test matrix (#615)
* Ensure etstool.py has consistent default Python versions (#614)
* Fix typos in comments for table editor (#610)
* Comprehensive tests for the base Editor object (#609)
* Fix ContextValue __init__ method (#607)
* Fix tutor.py in examples for Python 3 (#603)
* Set initial item focus correctly on Qt (#602)
* Make View and UI icons an Image trait (#600)
* Fix TableEditor styling for Qt (#597)
OBS-URL: https://build.opensuse.org/request/show/730770
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-traitsui?expand=0&rev=3
* Add "bool" to allowed types for TableColumn (#656)
* Fix tabular editor column widths (#652)
* Fix setting valus in DataFrameEditor (#651)
* Allow '...' in addition to ellipsis in text elision (#644)
* Handle invalid values in RangeEditor better (#637)
* Fix multi-select in Qt TabularEditor (#633)
* Fix call to Bind in Wx FileEditor (#628)
* Fixes to doc links in tutorial (#619)
* Remove 3.5 from test matrix (#615)
* Ensure etstool.py has consistent default Python versions (#614)
* Fix typos in comments for table editor (#610)
* Comprehensive tests for the base Editor object (#609)
* Fix ContextValue __init__ method (#607)
* Fix tutor.py in examples for Python 3 (#603)
* Set initial item focus correctly on Qt (#602)
* Make View and UI icons an Image trait (#600)
* Fix TableEditor styling for Qt (#597)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-traitsui?expand=0&rev=5