We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da4d7fd commit 2b0c2c7Copy full SHA for 2b0c2c7
.github/workflows/test_actions.yml
@@ -23,7 +23,7 @@ jobs:
23
run: |
24
import sys
25
version = sys.version_info[:2]
26
- expected_version = tuple("${{ matrix.python-version }}".split("."))
+ expected_version = tuple(map(int, "${{ matrix.python-version }}".split(".")))
27
if version != expected_version:
28
print(f"::error title=Test Failure::The Python version does not match. Got {version}, expected {expected_version}.")
29
sys.exit(1)
0 commit comments