From 318333b3135b030aa65775d7dfa29367e67fb97e Mon Sep 17 00:00:00 2001 From: David Brochart Date: Fri, 6 Aug 2021 08:36:23 +0200 Subject: [PATCH] Install jupyter_client pre-release --- .github/workflows/linux-tests.yml | 3 ++- .github/workflows/macos-tests.yml | 3 ++- .github/workflows/windows-tests.yml | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux-tests.yml b/.github/workflows/linux-tests.yml index 1a12f2ef..c051d579 100644 --- a/.github/workflows/linux-tests.yml +++ b/.github/workflows/linux-tests.yml @@ -40,12 +40,13 @@ jobs: run: | conda env update --file requirements/environment.yml conda install entrypoints nest-asyncio - pip install https://github.com/jupyter/jupyter_client/archive/master.zip --no-deps + pip install jupyter_client --pre --no-deps --ignore-installed - name: Show environment information shell: bash -l {0} run: | conda info conda list + python -c 'import jupyter_client; print("jupyter_client", jupyter_client.__version__)' - name: Run tests shell: bash -l {0} run: xvfb-run --auto-servernum pytest -x -vv --cov=qtconsole qtconsole diff --git a/.github/workflows/macos-tests.yml b/.github/workflows/macos-tests.yml index 1a21f556..f012c04b 100644 --- a/.github/workflows/macos-tests.yml +++ b/.github/workflows/macos-tests.yml @@ -35,12 +35,13 @@ jobs: run: | conda env update --file requirements/environment.yml conda install entrypoints nest-asyncio - pip install https://github.com/jupyter/jupyter_client/archive/master.zip --no-deps + pip install jupyter_client --pre --no-deps --ignore-installed - name: Show environment information shell: bash -l {0} run: | conda info conda list + python -c 'import jupyter_client; print("jupyter_client", jupyter_client.__version__)' - name: Run tests shell: bash -l {0} run: pytest -x -vv --cov=qtconsole qtconsole diff --git a/.github/workflows/windows-tests.yml b/.github/workflows/windows-tests.yml index 9479bfa2..40f01bd8 100644 --- a/.github/workflows/windows-tests.yml +++ b/.github/workflows/windows-tests.yml @@ -35,12 +35,13 @@ jobs: run: | conda env update --file requirements/environment.yml conda install entrypoints nest-asyncio - pip install https://github.com/jupyter/jupyter_client/archive/master.zip --no-deps + pip install jupyter_client --pre --no-deps --ignore-installed - name: Show environment information shell: bash -l {0} run: | conda info conda list + python -c 'import jupyter_client; print("jupyter_client", jupyter_client.__version__)' - name: Run tests shell: bash -l {0} run: pytest -x -vv --cov=qtconsole qtconsole