diff --git a/.github/workflows/update-python-versions.yml b/.github/workflows/update-python-versions.yml index 1462ef9..046c565 100644 --- a/.github/workflows/update-python-versions.yml +++ b/.github/workflows/update-python-versions.yml @@ -28,7 +28,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install requests python-dateutil colorama + python -m pip install requests python-dateutil colorama packaging - name: Generate supported versions id: generate @@ -60,7 +60,7 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: | - Update README and pyproject.toml with current supported Python versions + docs: Updated README and pyproject.toml with current supported Python versions Auto-updated by update-readme workflow based on current ESP-IDF and Python support lifecycle. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..273ec4e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +__pycache__/ +supported_versions.json diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 23d101e..fa8ac3d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ default_install_hook_types: [pre-commit, commit-msg] ci: autofix_commit_msg: | - Apply automatic fixes from pre-commit hooks + fix: Apply automatic fixes from pre-commit hooks autofix_prs: true autoupdate_commit_msg: 'ci: Bump pre-commit hooks' autoupdate_schedule: quarterly