Skip to content

Python 3.14 fix: add _win_cp_codecs to excluded aliases #21

Python 3.14 fix: add _win_cp_codecs to excluded aliases

Python 3.14 fix: add _win_cp_codecs to excluded aliases #21

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: '3.14'
- name: Update index.html and push to repo
run: |
git config --local user.email "$(git log --format='%ae' HEAD^!)"
git config --local user.name "$(git log --format='%an' HEAD^!)"
git remote add github "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$GITHUB_REPOSITORY.git"
git pull github ${GITHUB_REF} --ff-only
python3 ./encodings.py --table html >index.html
git commit -m "Committed from Github Actions" index.html
git push github HEAD:${GITHUB_REF}