From d6eb67a4d190822cac3d6f9c9e4b91a04a590426 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Thu, 10 Sep 2020 10:51:07 -0400 Subject: [PATCH] Add `dev-requirements.txt` for pip MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit `dev-requirements.txt` contains which specific version of Black and Flake8 to use for development and by a CI so that both parties agree. Use specific versions as such: $ virtualenv -p python3 yo $ . yo/bin/activate $ pip install -r dev-requirements.txt Signed-off-by: Philippe Proulx Change-Id: Id29e7f61c4038b55bed613e00f76f7c180699fa9 Reviewed-on: https://review.lttng.org/c/babeltrace/+/4057 CI-Build: Michael Jeanson Tested-by: jenkins Reviewed-by: Michael Jeanson Reviewed-by: Jérémie Galarneau --- dev-requirements.txt | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 dev-requirements.txt diff --git a/dev-requirements.txt b/dev-requirements.txt new file mode 100644 index 00000000..8a6bc811 --- /dev/null +++ b/dev-requirements.txt @@ -0,0 +1,2 @@ +black == 20.8b1 +flake8 >= 3.8 -- 2.34.1