You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by kn...@apache.org on 2021/05/19 08:09:25 UTC

[flink-jira-bot] 03/47: [FINK-22032] add freeze target to Makefile

This is an automated email from the ASF dual-hosted git repository.

knaufk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-jira-bot.git

commit bf4c4c1144ce3f9f7fca5cccb8ce05b8541efe28
Author: Konstantin Knauf <kn...@gmail.com>
AuthorDate: Fri Apr 9 11:34:34 2021 +0200

    [FINK-22032] add freeze target to Makefile
---
 Makefile | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Makefile b/Makefile
index a9c933b..40ca9f7 100644
--- a/Makefile
+++ b/Makefile
@@ -17,6 +17,9 @@ run: venv
 format: venv
 	./$(VENV)/bin/python3 -m black .
 
+freeze: venv
+	./$(VENV)/bin/pip freeze > requirements.txt
+
 clean:
 	rm -rf $(VENV)
 	find . -type f -name '*.pyc' -delete