A few days ago I updated all pip packages on Ubuntu 20.04 with this command:
pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
Does exists any way to see previous and present versions of any of them? Is it possible to recover? Some of them are incompatible with some Openstack services now...
Thanks,
Best