diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 09c6c79e..72c9a221 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,3 +1,4 @@ + // For format details, see https://aka.ms/devcontainer.json. For config options, see the // README at: https://github.com/devcontainers/templates/tree/main/src/python { @@ -21,7 +22,7 @@ "extensions": ["learn-pack.learnpack-vscode"] } }, - "onCreateCommand": "pip3 install pytest==6.2.5 pytest-testdox mock && npm i @learnpack/learnpack@2.1.47 -g && learnpack plugins:install @learnpack/python@1.0.3" + "onCreateCommand": "pip3 install pytest==6.2.5 pytest-testdox mock && npm i @learnpack/learnpack@5.0.13 -g && learnpack plugins:install @learnpack/python@1.0.6" // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, @@ -38,3 +39,4 @@ // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "root" } + diff --git a/.github/workflows/learnpack-audit.yml b/.github/workflows/learnpack-audit.yml index 52644d89..95814c2a 100644 --- a/.github/workflows/learnpack-audit.yml +++ b/.github/workflows/learnpack-audit.yml @@ -5,9 +5,9 @@ name: Learnpack audit on: push: - branches: [ master ] + branches: [ main ] pull_request: - branches: [ master ] + branches: [ main ] jobs: build: @@ -16,7 +16,7 @@ jobs: strategy: matrix: - node-version: [14.x] + node-version: [20.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 25ac192d..3de43aa2 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -25,4 +25,4 @@ RUN echo "unset DATABASE_URL" >> $HOME/.bashrc RUN echo "export DATABASE_URL" >> $HOME/.bashrc RUN pip3 install pytest==6.2.5 pytest-testdox mock -RUN npm i @learnpack/learnpack@2.1.47 -g && learnpack plugins:install @learnpack/python@1.0.3 +RUN npm i @learnpack/learnpack@2.1.56 -g && learnpack plugins:install @learnpack/python@1.0.3 diff --git a/learn.json b/learn.json index 3f0615e5..f359e604 100644 --- a/learn.json +++ b/learn.json @@ -1,24 +1,34 @@ { - "language": "python3", - "slug": "python-lists-loops", - "title": { - "us": "Learn Python Loops and lists Interactively", - "es": "Aprende listas y bucles de Python Interactivamente" - }, - "repository": "https://github.com/4GeeksAcademy/python-lists-loops-programming-exercises", - "preview": "https://github.com/4GeeksAcademy/python-lists-loops-programming-exercises/blob/master/preview.gif?raw=true", - "description": { - "us": "Practice Python Lists and tuples (arrays) with interactive auto-graded exercises and video solutions", - "es": "Practica listas y tuplas de Python con ejercicios interactivos, auto-evaluados y con video soluiones" - }, - "duration": 10, - "difficulty": "easy", - "projectType": "tutorial", - "videoSolutions": true, - "bugsLink": "https://github.com/learnpack/learnpack/issues/new", - - "editor": { - "version": "3.1.23" - } - +"language": "python3", +"slug": "python-lists-loops", +"title": { + "us": "Learn Python Loops and lists Interactively", + "es": "Aprende listas y bucles de Python Interactivamente" +}, +"repository": "https://github.com/4GeeksAcademy/python-lists-loops-programming-exercises", +"preview": "https://github.com/4GeeksAcademy/python-lists-loops-programming-exercises/blob/master/preview.gif?raw=true", +"description": { + "us": "Practice Python Lists and tuples (arrays) with interactive auto-graded exercises and video solutions", + "es": "Practica listas y tuplas de Python con ejercicios interactivos, auto-evaluados y con video soluiones" +}, +"duration": 10, +"difficulty": "easy", +"projectType": "tutorial", +"videoSolutions": true, +"bugsLink": "https://github.com/learnpack/learnpack/issues/new", + +"editor": { + "version": "5.0" +}, +"telemetry": { + "batch": "https://breathecode.herokuapp.com/v1/assignment/me/telemetry?asset_id=147" +}, +"video": { + "intro": { + "es": "https://www.youtube.com/watch?v=xMg9d0KsYAk", + "en": "https://www.youtube.com/watch?v=xMg9d0KsYAk" + } +} + + }