You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GitHub actions does support py 3.10. You merely need to declare py versions as strings instead of numbers. E.g.:
python-version: ["3.7", "3.8", "3.9", "3.10"]
The problem you're encountering, is (presumably) that YAML parsing is trimming trailing zeros from numbers. Here's a similar issue I stumbled upon recently: actions/setup-python#160 (comment)
GitHub actions does support py 3.10. You merely need to declare py versions as strings instead of numbers. E.g.:
The problem you're encountering, is (presumably) that YAML parsing is trimming trailing zeros from numbers. Here's a similar issue I stumbled upon recently:
actions/setup-python#160 (comment)
Originally posted by @fkoh111 in #10 (comment)
The text was updated successfully, but these errors were encountered: