From 668e5fb7003a302988bfd400fb4441a58231fb1b Mon Sep 17 00:00:00 2001 From: Jiri Kucera Date: Thu, 9 Jan 2020 12:15:15 +0100 Subject: [PATCH] custom_requirements.txt: Add environment marker Specify on which environments PyYAML should be installed to prevent failing pip install. --- custom_requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_requirements.txt b/custom_requirements.txt index 9f34ef0..e52eadf 100644 --- a/custom_requirements.txt +++ b/custom_requirements.txt @@ -1,4 +1,4 @@ # SPDX-License-Identifier: MIT # Write requirements for running your custom commands in tox here: -PyYAML +PyYAML; python_version == '2.7' or python_version >= '3.5'