From 9b88ea5b602604a8926bfbfd3a7de17222ae0acb Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Sat, 31 Dec 2022 11:26:01 +0100 Subject: [PATCH] Try to use the latest tagged virtualenv (#7638) --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed770636a5..f3599fab8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -113,8 +113,9 @@ jobs: - run: python -m pip install tox + # Get only the latest tagged version for stability reasons - name: Install virtualenv - run: git clone https://github.com/pypa/virtualenv.git + run: git clone https://github.com/pypa/virtualenv.git && cd virtualenv && git checkout $(git describe --tags | cut -d - -f 1) shell: bash - name: Test Nushell in virtualenv