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
pip installs setuptools and wheel, but does not show their versions in `pip freeze`. As a result, neither of these packages show up in our requirements.txt. As such, we never install newer versions of these packages. Any package that expects a newer version of these packages will break. In this case, xarray wants setuptools 41.2+.
This PR changes our install flow to force reinstall and upgrade everything requested to ensure we pick up the right packages.
Test plan: `make release-env` produces a working environment.
0 commit comments