aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2022-02-09 13:57:15 +0000
committerHarald Welte <laforge@osmocom.org>2022-02-09 15:06:43 +0100
commitf03894aa65020ee04d75c08bc91e7d533308cad3 (patch)
treed300b829c22a401d1402eb0c1bb1529e89186bf4
parente91405e04edb8d08be4c91aa700cf8e179fe0794 (diff)
update pyyaml dependency to >= 5.1
5.1 was the version introducing pyyaml.FullLoader which we're using, see https://pyyaml.org/wiki/PyYAML#history Change-Id: I0f2fa08ceeac2759218e85ad5bdce3ef951d0b74
-rwxr-xr-xcontrib/jenkins.sh2
-rw-r--r--requirements.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index e2e04e7..a01c012 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -18,7 +18,7 @@ fi
virtualenv -p python3 venv --system-site-packages
. venv/bin/activate
pip install pytlv
-pip install pyyaml
+pip install 'pyyaml>=5.1'
pip install cmd2==1.5
pip install jsonpath-ng
pip install construct
diff --git a/requirements.txt b/requirements.txt
index 7308cf8..0046a50 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -6,4 +6,4 @@ jsonpath-ng
construct
bidict
gsm0338
-pyyaml
+pyyaml>=5.1