From bf57e137e7d6036bef8bed7e8fb0414c330f57b2 Mon Sep 17 00:00:00 2001 From: maximlt Date: Tue, 8 Feb 2022 20:56:46 +0100 Subject: [PATCH] debug 3.6 --- .github/workflows/test.yml | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 537f8c1f10..d1fa090dbe 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] - python-version: ['3.6', '3.10'] + python-version: ['3.6', '3.7', '3.10'] # python-version: [3.6, 3.7, 3.8, 3.9] timeout-minutes: 60 defaults: @@ -40,8 +40,15 @@ jobs: miniconda-version: "latest" - name: Fetch unshallow run: git fetch --prune --tags --unshallow - - name: conda setup + - name: conda setup 3.6 + if: matrix.python-version == '3.6' + run: | + eval "$(conda shell.bash hook)" + conda create -c pyviz/label/dev -c bokeh -n test-environment python=${{ matrix.python-version }} pyctdev + - name: conda setup > 3.6 + if: matrix.python-version != '3.6' run: | + eval "$(conda shell.bash hook)" conda update -n base -c defaults conda conda create ${{ env.CHANS_DEV }} -n test-environment python=${{ matrix.python-version }} pyctdev - name: doit env_capture @@ -49,7 +56,20 @@ jobs: eval "$(conda shell.bash hook)" conda activate test-environment doit env_capture - - name: doit develop_install + - name: doit develop_install 3.6 + if: matrix.python-version == '3.6' + run: | + eval "$(conda shell.bash hook)" + conda activate test-environment + conda list + doit develop_install -c pyviz/label/dev -c bokeh ${{ env.HV_REQUIREMENTS }} + python -c "from param import version; print(version.Version.setup_version('.', 'holoviews', archive_commit='$Format:%h$'))" + echo "-----" + git describe + echo "======" + conda list + - name: doit develop_install > 3.6 + if: matrix.python-version != '3.6' run: | eval "$(conda shell.bash hook)" conda activate test-environment @@ -68,7 +88,7 @@ jobs: run: | eval "$(conda shell.bash hook)" conda activate test-environment - conda install ${{ env.CHANS_DEV }} "panel=0.12" + conda install -c pyviz/label/dev -c bokeh "panel=0.12" - name: doit env_capture run: | eval "$(conda shell.bash hook)"