You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1,I think your line 5 is error:
version = '.'.join([str(v) for v in import('jsonrpc').VERSION])
should change to
version = '.'.join([str(v) for v in import('jsonrpc').version])
2,another problem is your package is depending on jsonrpc. you should write it clearly in your readme file.
The text was updated successfully, but these errors were encountered:
1,I think your line 5 is error:
version = '.'.join([str(v) for v in import('jsonrpc').VERSION])
should change to
version = '.'.join([str(v) for v in import('jsonrpc').version])
2,another problem is your package is depending on jsonrpc. you should write it clearly in your readme file.
The text was updated successfully, but these errors were encountered: