Merge remote-tracking branch 'origin/master' into nightly

This commit is contained in:
Overhang.IO 2023-12-08 18:41:21 +00:00
commit 7776ba9ce2
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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"], install_requires=["tutor>=16.0.0,<17.0.0"],
extras_require={"dev": ["tutor[dev]>=16.0.0,<17.0.0"]},
entry_points={ entry_points={
"tutor.plugin.v1": [ "tutor.plugin.v1": [
"android = tutorandroid.plugin" "android = tutorandroid.plugin"