lneuhaus

Results 121 comments of lneuhaus

I can reproduce this issue as well. My code: ``` import matplotlib.pyplot as plt import time x = list(range(10)) for i in range(100): plt.figure() plt.plot(x); plt.title(str(i)) time.sleep(0.1) ``` After the...

The answer is here: https://stackoverflow.com/questions/25188153/this-application-failed-to-start-because-it-could-not-find-or-load-the-qt-platfo

The real issue is with pyinstaller and is a known issue: https://github.com/pyinstaller/pyinstaller/issues/2857 They kept on trying to fix it for a while but it seems like the solution is only...

temporary fix: 417e8e77af6f703af9c15f181b075c65b6b2637a

Current error message: ``` Traceback (most recent call last): File "PyInstaller/loader/rthooks/pyi_rth_pkgres.py", line 11, in File "/Users/travis/build/lneuhaus/pyinstaller/PyInstaller/loader/pyimod03_importers.py", line 631, in exec_module File "site-packages/pkg_resources/__init__.py", line 1040, in File "site-packages/pkg_resources/__init__.py", line 1043, in...

Just merged "develop-0.9.3" into master. To do before merging this branch: - merge master into this branch and fix conflicts - bump version from 0.9.5 to 1.0.0 - add list...

pinging @SamuelDeleglise again - otherwise I might go ahead and clean this up for merging.

Hi @SamuelDeleglise, if you want let's try to merge this branch into master. Am I fine to click "update branch" here?

Also noting that we should ideally remove all the `loop=LOOP` constructs from `async_utils.py`, since they are deprecated and break this version on Python>=3.10. Newer versions of Python should figure out...

Sorry for my late reply, missed your message. I tried this yesterday and found this version to work better than `master`, so am happy to merge. For that same reason,...