From c2aded19aa86c981803fe6fe8e5f94439065700f Mon Sep 17 00:00:00 2001 From: Emad Rad Date: Fri, 8 Dec 2023 15:44:41 +0330 Subject: [PATCH] ci: install dev instead of different dependencies --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2ff802d..829f613 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,6 +17,6 @@ jobs: run: python -m pip install --upgrade pip setuptools - name: Install dependencies run: | - pip install 'tutor[dev]>=16.0.0,<17.0.0' + pip install .[dev] - name: Test lint, types, and format run: make test