From 65aecc2e53a6ff5421ea79d4627cda803498f3ed Mon Sep 17 00:00:00 2001 From: Philipp Jerrent Date: Wed, 27 Feb 2019 09:57:48 +0100 Subject: [PATCH] pinned ruamel.yaml version to 0.15.42 --- .travis.yml | 2 +- Dockerfile | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1349033..201c33b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,5 +6,5 @@ python: # TODO: pylint ruamel.yaml doesn't work on travis with this version - "3.5-dev" before_install: - bundle install -install: "pip install ruamel.yaml==0.15.86 flake8 pylint" +install: "pip install ruamel.yaml==0.15.42 flake8 pylint" script: "rake test" diff --git a/Dockerfile b/Dockerfile index ca7478a..de763d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN \ wget "https://bootstrap.pypa.io/get-pip.py" -O /dev/stdout | python3 && \ apk del build-dependencies -RUN pip install --no-cache-dir ruamel.yaml +RUN pip install --no-cache-dir ruamel.yaml==0.15.42 COPY bin /bin COPY compose_format /usr/lib/python3.5/site-packages/compose_format diff --git a/setup.py b/setup.py index 27e6980..429936e 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def readme(): author='Stefan Rohe', license='MIT', packages=['compose_format'], - install_requires=['ruamel.yaml<=0.15.86'], + install_requires=['ruamel.yaml<=0.15.42'], zip_safe=False, classifiers=[ 'License :: OSI Approved :: MIT License',