From 39d49ed6ae609075fe0536b7f215ec76ace44f03 Mon Sep 17 00:00:00 2001 From: potipot Date: Sun, 1 Oct 2023 14:31:23 +0200 Subject: [PATCH] update ci to python 3.9, dev extras includes all --- .github/workflows/ci-all-testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-all-testing.yml b/.github/workflows/ci-all-testing.yml index 266df5de2..0429c12d1 100644 --- a/.github/workflows/ci-all-testing.yml +++ b/.github/workflows/ci-all-testing.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-18.04] - python-version: [3.7, 3.8] + python-version: [3.9] steps: - uses: actions/checkout@v2 @@ -25,7 +25,7 @@ jobs: - name: Install package run: | sh ./icevision_install.sh cpu - pip install -e ".[all,dev]" + pip install -e .[dev] pip install fiftyone - name: Lint with flake8