-
Notifications
You must be signed in to change notification settings - Fork 16
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
pyqtgraph.python2_3 no longer exists #157
Comments
Further, since Python 3 all strings have been Unicode anyway - the function being imported just made sure the argument was encoded as a UTF-8 string
|
pip install pyqtgraph==0.11.1 |
Hi, just wanted to ping that I was caught out by this same issue just now when upgrading pytplot to version 1.7.28 in response to spedas/pyspedas#434 I was prompted to install |
On line 6 of AxisItem.py you are importing:
from pyqtgraph.python2_3 import asUnicode
but
pyqtgraph.python2_3
no longer exists in the current version of pyqtgraph (0.12.3). Since yourrequirements.txt
specifiespyqtgraph >= 0.11.1
, a normal import ofpytplot
now fails because dependency resolution will simply get the latestpyqtgraph
andpython2_3.py
won't exist in it.Either
requirements.txt
should be changed to specify apyqtgraph
version lower than 0.12.3 orAxisItem
should be changed to not requirepyqtgraph.python2_3
. The latter is probably preferable since everyone's dropping Python 2 support.The text was updated successfully, but these errors were encountered: