From ef52cb4b7dc90d22470255aeddccdf612a420c1b Mon Sep 17 00:00:00 2001 From: Christian Sauer Date: Thu, 25 May 2017 11:56:25 -0400 Subject: [PATCH] Regenerate lock file for 3.6 Maya uses `ruamel.yaml` which needs `ruamel.ordereddict` under 2.7 but does not under 3.x. `ruamel.ordereddict` doesn't build under 3.x. Maya's Pipfile.lock file was created under 2.7 so `ruamel.ordereddict` is listed as a dependency. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5bbc668..cc539ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,6 @@ python: - "3.6" # command to install dependencies -install: pip install pipenv; pipenv install --dev +install: pip install pipenv; pipenv lock; pipenv install --dev # command to run tests script: pipenv run pytest