-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
QtGui.QStyleOptionSlider: implicit conversion to float fails with Python 3.10 #1906
Comments
This is a traitsui issue - there's nothing that the Pyface code can do to fix this. |
Thanks for the comprehensive report! |
yoda-vid
added a commit
to sanderslab/magellanmapper
that referenced
this issue
Dec 31, 2022
- Add Python 3.10, though the GUI currently cannot load because of TraitsUI issue enthought/traitsui#1906 - Add Python 3.10-3.11 custom dependency support
yoda-vid
added a commit
to sanderslab/magellanmapper
that referenced
this issue
Feb 3, 2023
- Add Python 3.10, though the GUI currently cannot load because of TraitsUI issue enthought/traitsui#1906 - Add Python 3.10-3.11 custom dependency support
osthomas
added a commit
to osthomas/optoConfig-96-build-test
that referenced
this issue
Nov 13, 2023
* Fix BoundsEditor by patching RangeSlider (enthought/traitsui#1906) * Update versions of dependencies
osthomas
added a commit
to osthomas/optoConfig-96-build-test
that referenced
this issue
Nov 13, 2023
* Fix BoundsEditor by patching RangeSlider (enthought/traitsui#1906) * Update versions of dependencies
osthomas
added a commit
to osthomas/optoConfig-96-build-test
that referenced
this issue
Nov 13, 2023
* Fix BoundsEditor by patching RangeSlider (enthought/traitsui#1906) * Update versions of dependencies
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With Python 3.10, using a traitsui
BoundsEditor
for aRange
fails:The same code works in Python 3.9.
In range_slider.py, the slider position appears to be set like so:
This appears to be the reason for the failure because
value
is a float and implicit conversion fails in Python 3.10.Python 3.9
Python 3.10
The text was updated successfully, but these errors were encountered: