ci: Fix Python 3.10 version

The YAML spec interprets 3.10 as 3.1, hence we need to pass an explicit
string value. I was aware of this problem, but still made this mistake.
This commit is contained in:
Tomas Babej 2021-10-10 11:18:20 -04:00
parent bdba08ee4f
commit e6b859d3b0

View file

@ -22,7 +22,7 @@ jobs:
- PYTHON_VERSION: 3.7
- PYTHON_VERSION: 3.8
- PYTHON_VERSION: 3.9
- PYTHON_VERSION: 3.10
- PYTHON_VERSION: "3.10"
continue-on-error: ${{ matrix.continue-on-error == true }}
steps:
- uses: actions/checkout@v2