From 10c31e37e7ff8c2eca02af12388a89e8f952d3f1 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Thu, 17 Aug 2023 10:31:10 -0700 Subject: [PATCH] Dump a pip freeze into ci output for ease of seeing module verisons --- script/cibuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/cibuild b/script/cibuild index f50882c..e652b72 100755 --- a/script/cibuild +++ b/script/cibuild @@ -16,7 +16,8 @@ fi echo "## environment & versions ######################################################" python --version pip --version - +echo "## modules: " +pip freeze echo "## clean up ####################################################################" find octodns tests -name "*.pyc" -exec rm {} \; rm -f *.pyc