fix: dev dependency
This commit is contained in:
parent
aa9d60792d
commit
f57d81fcb7
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@ -17,6 +17,6 @@ jobs:
|
|||||||
run: python -m pip install --upgrade pip setuptools
|
run: python -m pip install --upgrade pip setuptools
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
pip install 'tutor[dev]>=16.0.0,<17.0.0'
|
pip install .[dev]
|
||||||
- name: Test lint, types, and format
|
- name: Test lint, types, and format
|
||||||
run: make test
|
run: make test
|
||||||
|
|||||||
1
setup.py
1
setup.py
@ -44,6 +44,7 @@ setup(
|
|||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
python_requires=">=3.8",
|
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"],
|
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"]},
|
entry_points={"tutor.plugin.v1": ["credentials = tutorcredentials.plugin"]},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 5 - Production/Stable",
|
"Development Status :: 5 - Production/Stable",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user