From f7f2425aa1f01ffdb102f02588423db7ade7332b Mon Sep 17 00:00:00 2001 From: Anders Olsson <661919+anderso@users.noreply.github.com> Date: Mon, 17 Oct 2022 15:00:13 +0200 Subject: [PATCH 1/2] Upgrade plotly from 4.x to 5.x --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 65461262..e24fe325 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ requires = [ "nbformat>=5.1.3,<6.0.0", "colorlog>=4.0.0,<5.0.0", "tabulate>=0.8.2,<1.0.0", - "plotly>=4.0.0,<5.0.0", + "plotly>=4.0.0,<6.0.0", "progress>=1.4,<2.0", "dataclasses; python_version == '3.6'", ] From 3d3c789f9c0fffcb5a419fcbdc02539ebd93cd2b Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Thu, 20 Oct 2022 13:19:53 +1100 Subject: [PATCH 2/2] update pip and install flit separately --- .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 62cc4329..b17fffbe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,8 @@ jobs: python-version: "${{ matrix.python-version }}" - name: install dependencies run: | - pip install --upgrade pip wheel flit + python -m pip install -U pip + pip install wheel flit flit install --extras=all - name: lint and test run: make ci