Re: Discuss: How long should Leo support PyQt5?

2022-02-15 Thread tbp1...@gmail.com
Here is how I have been testing with either pyqt5 or 6. No need for separate virtual environments. After I install pyqt6, I go to the installation location (site-packages) and move all the pyqt6 folders (including the *.dist-info ones) somewhere else. In my case I'm using c:\Tom\qt623.

Re: Discuss: How long should Leo support PyQt5?

2022-02-15 Thread Edward K. Ream
On Tue, Feb 15, 2022 at 11:27 AM tbp1...@gmail.com wrote: > No need to simplify existing code that is working, since it's already been > adjusted for both. mypy and pylint are reasonable concerns, and maybe > there will turn out to be a simple way to handle them. So let's not rush! I agree.

Re: Discuss: How long should Leo support PyQt5?

2022-02-15 Thread tbp1...@gmail.com
No need to simplify existing code that is working, since it's already been adjusted for both. mypy and pylint are reasonable concerns, and maybe there will turn out to be a simple way to handle them. So let's not rush! On Tuesday, February 15, 2022 at 11:26:22 AM UTC-5 Edward K. Ream wrote:

Discuss: How long should Leo support PyQt5?

2022-02-15 Thread Edward K. Ream
Qt6 was released more than a year ago. I would like to remove support for PyQt5 soon after releasing Leo 6.6 final. Don't panic. Leo 6.6 will support both PyQt5 and PyQt6. Supporting only PyQt6 will simplify the code and allow mypy and pylint to do a better job of spotting problems. Your

Re: TravisCI started to fail three hours ago

2022-02-15 Thread tbp1...@gmail.com
I'd guess that there was an OS update, and they updated to a higher version of Python. The 3.6 version might still be on the VM, but not on the path. If so, calling with python3.6 instead of python3 might be enough. On Tuesday, February 15, 2022 at 10:39:32 AM UTC-5 Edward K. Ream wrote: >

TravisCI started to fail three hours ago

2022-02-15 Thread Edward K. Ream
This is issue #2421 . For some reason, TravisCI says : Error: Version 3.6 with arch x64 not found This looks like a change to TravisCI that is unrelated to

Freewin Plugin Now Works With PyQt6

2022-02-15 Thread tbp1...@gmail.com
With the latest version of the devel branch, build c6baa0090b, the Freewin plugin has its full rendering capability under PyQt6. The PyQT6 version must be at least 6.23. You may also need to install PyQt6-WebEngine, which is available via pip from PyPI. The new version of FW is 1.8. The

Re: ViewRendered3 Now Works With PyQt6

2022-02-15 Thread Edward K. Ream
On Mon, Feb 14, 2022 at 9:12 PM tbp1...@gmail.com wrote: > As of the latest changeset in devel, VR3 works with PyQt6. It has to be > at least version 6.23 or higher. In addition to PyQt6, you need to install > PyQt6-WebEngine, which is also available via pip from PyPI. > > With this update,