python - How to determine what versions of pypi modules go together? -
for reasons of backward compatibility old wxpython, needed rollback installed version of altgraph module 0.7.
when so, installed version of module modulegraph complaining altgraph not recent enough:
file "build/bdist.macosx-10.3-fat/egg/pkg_resources/__init__.py", line 854, in resolve pkg_resources.contextualversionconflict: (altgraph 0.7.0 (/library/frameworks/python.framework/versions/2.6/lib/python2.6/site-packages/altgraph-0.7.0-py2.6.egg), requirement.parse('altgraph>=0.12'), set(['modulegraph'])) since know sure altgraph must remain version 0.7 (and therefore modulegraph need roll back), how determine version of modulegraph need roll to, without guessing?
i guess general question how determine how line module revisions.
Comments
Post a Comment