Revisions of python-traitsui

buildservice-autocommit accepted request 1127266 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 17)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 16)
- 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.
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 946811 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 15)
- 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
buildservice-autocommit accepted request 874882 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 14)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 874785 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 13)
- 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
buildservice-autocommit accepted request 832922 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 12)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 832920 from Petr Gajdos's avatar Petr Gajdos (pgajdos) (revision 11)
- 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
buildservice-autocommit accepted request 820888 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 10)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 820871 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 9)
- Update to 7.0.0
  * Documentation improvements (#720, #724, #723, #778)
  * WxPython 4 compatibility and support (#708, #736, #762, #772, #775, #776)
  * Traits 6 compatibility and enhancements (#689, #690, #693, #695, #713, #727, #770)
  * Style improvements (#648, #771)
  * Add placeholder text option for TextEditor (#735)
  * Examples clean-up and unification (#697, #702, #703, #705, #711, #712, #777)
  * Add a DatetimeEditor (#719, #730)
  * Refactor and clean-up of base Editor class (#685, #686, #688)
  * Remove use of Category classes from TraitsUI (#654)
  * Add LEDEditor for Qt (#635)
  * Add 'docs' command to etstool.py (#624)
  * Add TabularAdapter to traitsui.api (#627)
  * Enhancements to CI and testing (#683, #714, #740)
  * Documentation fixes (#546, #766)
  * Fix cgi.escape for Python 3.8 (#780)
  * Log exceptions in table sorting (#751)
  * Use TupleEditor for traits derived from BaseTuple (#747)
  * Fixes for Undo/Redo (#733)
  * Add explicit redraw for TableEditor selection (#721)
  * Fixes for Qt5 support (#709)
  * Fix bugs in color functions (#707, #744)
  * Fix importing of ProgressColumn and EditColumn (#691)
  * Set initial focus item correctly in Qt (#602)
  * Fix text elision test on some platforms (#644)
  * Fix a bug with TableEditor column clicking (#669)
  * Fix typo in progress column exception (#662)
buildservice-autocommit accepted request 795714 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 8)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) committed (revision 7)
- Fix build without python2
buildservice-autocommit accepted request 730770 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 6)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) committed (revision 5)
- 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)
buildservice-autocommit accepted request 718631 from Todd R's avatar Todd R (TheBlackCat) (revision 4)
baserev update by copy to link target
Todd R's avatar Todd R (TheBlackCat) accepted request 718630 from Todd R's avatar Todd R (TheBlackCat) (revision 3)
- Update to Release 6.1.2
  + Fixes
    * Fix tree node copy failure to copy
    * Fix/scroll to row preserve column
    * Call correct object on label change for TreeNodeObject
    * Remove uses of etsdevtools
    * Fix modal view application
    * Remove unicode usage
    * Update Travis CI configuration to be compatible with Ubuntu Xenial.
    * Build CI on maintenance branches
    * Fix an erroneous handler removal
    * Fix the sizeHint() default for TreeItemDelegate.
    * Update unittest import
- Update to Release 6.1.1
  + Fixes
    * Fix TreeNodeObject listener cache.
    * Fix tree node insertion.
- Update to Release 6.1.0
  + Enhancemenrs
    * Switch to using six instead of 2to3.
    * Experimental Pyside2 support.
    * Allow arbitrary rendering of tree nodes in Qt backend.
    * Use tooltip metadata on a trait instead of desc, if available.
    * Enable scroll to column for TabularEditor
    * Add demo for tabular editor with context menu.
    * Allow the use of extended trait names in TreeNodes where possible.
    * Allow drag move and drag copy modes on Qt TabularEditor.
  + Fixes
    * Fixes to README.
    * Documentation fixes.
    * Fixes to setup.py.
    * Fix an attribute error on Qt TextRangeEditor.
    * Use SimpleEditor for Qt TextEditor's "text" style.
    * Fix handling of Range traits with a mix of constant and named bounds.
    * Fix display selection on Wx backend.
    * Fixes for Qt TableEditor selections.
    * Fix deprecation warnings for inspect.getargspec.
    * Fixes to etstool.
    * Fix TreeEditor unhashable type errors.
    * Fix crash when TabularEditor has no columns.
    * Clone editor factories so they don't share traits.
    * Avoid creation of dummy traits by springy items.
    * Fix drag and drop crash in Python 3.
    * Fix Undo/Redo for readonly items and error handling.
    * Fix source parsing in demo app.
    * Fix signature of close() method of Qt modal dialog.
    * Fix incorrect code in Wx ColorEditor.
    * Fix incorrect code in Wx ProgressEditor.
    * Remove uses of deprecated HasTraits.set() calls.
    * Fix rendering of CheckboxColumn on OS X and Qt.
Todd R's avatar Todd R (TheBlackCat) committed (revision 2)
converted link to branch
Todd R's avatar Todd R (TheBlackCat) committed (revision 1)
Displaying all 17 revisions
openSUSE Build Service is sponsored by