1
0
mirror of https://github.com/ilri/csv-metadata-quality-web.git synced 2025-07-05 22:11:41 +02:00

.github/workflows/python-app.yml: use Python 3.10

That's what I use for testing locally. Note that we need to quote
the version here because otherwise GitHub Actions will interpret it
as 3.1 due to how YAML works.
This commit is contained in:
2022-01-30 13:46:17 +03:00
parent 50f2832dfb
commit 974ae6c847

@ -16,10 +16,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Python 3.9 - name: Set up Python 3.10
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
python-version: 3.9 python-version: '3.10'
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip