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

This commit is contained in:
Overhang.IO 2024-03-19 10:50:24 +00:00
commit 6189dd0ede
3 changed files with 9 additions and 5 deletions

View File

@ -7,12 +7,15 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip setuptools
- name: Install dependencies

View File

@ -0,0 +1 @@
- [Feature] Add Python 3.12 CI checks (by @Danyal-Faheem)

View File

@ -65,7 +65,7 @@ tutor_hooks.Filters.CONFIG_OVERRIDES.add_items(
########################################
@MFE_APPS.add()
@MFE_APPS.add() # type: ignore
def _add_learner_record_mfe(
apps: dict[str, MFE_ATTRS_TYPE]
) -> dict[str, MFE_ATTRS_TYPE]: