Skip to content

Commit

Permalink
feat: dev dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeWithEmad committed Nov 28, 2023
1 parent 54e81f4 commit b28f25b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
run: python -m pip install --upgrade pip setuptools
- name: Install dependencies
run: |
pip install 'tutor[dev]>=16.1.2,<17.0.0'
pip install .[dev]
- name: Test lint, types, and format
run: make test
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def load_about():
include_package_data=True,
python_requires=">=3.8",
install_requires=["tutor>=16.1.2,<17.0.0"],
extras_require={"dev": ["tutor[dev]>=16.1.2,<17.0.0"]},
entry_points={"tutor.plugin.v1": ["mfe = tutormfe.plugin"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down
1 change: 0 additions & 1 deletion tutormfe/__about__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
__version__ = "16.1.2"

0 comments on commit b28f25b

Please sign in to comment.