From f57d81fcb74195f25513e9305e8c23f4e9eb1479 Mon Sep 17 00:00:00 2001 From: Emad Rad Date: Fri, 8 Dec 2023 22:03:43 +0330 Subject: [PATCH] fix: dev dependency --- .github/workflows/test.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 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 diff --git a/setup.py b/setup.py index 9661fe0..83a035e 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,7 @@ setup( include_package_data=True, python_requires=">=3.8", install_requires=["tutor>=16.0.0,<17.0.0", "tutor-discovery>=16.0.0,<17.0.0", "tutor-mfe>=16.0.0,<17.0.0"], + extras_require={"dev": ["tutor[dev]>=16.0.0,<17.0.0"]}, entry_points={"tutor.plugin.v1": ["credentials = tutorcredentials.plugin"]}, classifiers=[ "Development Status :: 5 - Production/Stable",