Commit 5a972ea9 by Alexander Popov

Avoid the YAML parsing mistake

3.10 is parsed as a number and it is trimmed to 3.1.
That is expected behavior for numbers, but it's crazy for versions.
parent ec61cf0e
......@@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
# Current ubuntu-latest (Ubuntu 22.04) provides the following versions of Python:
python-version: [3.7, 3.8, 3.9, 3.10, 3.11]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment