upgrade ci python version to 3.10

This commit is contained in:
Cangming H 2025-03-11 13:02:46 +08:00
parent b83ac10e88
commit bf0a0b8ad5
No known key found for this signature in database
GPG Key ID: DA3EBAE06A7D279C
2 changed files with 4 additions and 4 deletions

View File

@ -11,6 +11,6 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.9'
python-version: '3.10'
- run: pip install mkdocs mkdocs-material
- run: mkdocs gh-deploy --force
- run: mkdocs gh-deploy --force

View File

@ -27,10 +27,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install python 3.9
- name: install python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.10'
cache: 'pip' # caching pip dependencies
- name: Check formatting (black)
run: |