diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-04-07 19:36:18 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-01-26 18:02:06 -0800 |
commit | 106d7bb86295f5ca1599c2ef85f2ed8a6c4fa69e (patch) | |
tree | 34fab7e9d9ceacc55efdb152f596cbeb9c9b1c7f | |
parent | b439188ccd5a63e6e25cb9fc3fa641b374257536 (diff) | |
download | fatcat-106d7bb86295f5ca1599c2ef85f2ed8a6c4fa69e.tar.gz fatcat-106d7bb86295f5ca1599c2ef85f2ed8a6c4fa69e.zip |
gitlab-ci: install newer version of pipenv, via IA .deb file
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 216f1fcf..f71e2d77 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,6 +36,8 @@ unified_test: python3.8 python3.8-dev python3.8-venv python3.8-distutils python3-dev python3-pip python3-wheel python3-requests python3-six python3-pytest pipenv - diesel --version || cargo install diesel_cli --version 1.3.1 --no-default-features --features postgres + - wget --continue https://archive.org/download/ia-deb-pkgs/pipenv_11.15-0ia1_all.deb + - apt install ./pipenv_11.15-0ia1_all.deb - pipenv --version script: - rustc --version && cargo --version && diesel --version |