I've got a cloud function I deployed a while ago. It's running fine, but some of its dependent libraries were updated, and I didn't specify ==
in the requirements.txt
, so now when I try to deploy again pip
can't resolve dependencies. I'd like to know which specific versions my working, deployed version is using, but I can't just do a pip freeze
of the environment as far as I know.
Is there a way to see which versions of libraries the function's environment is using?