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
I wonder if there's a step missing in the ci.yml GitHub action file, where the cache setup is looking for steps.full-python-version.outputs.version, but there is nothing like full-python-version in the steps. I believe, after some googling, that this is the step that should be inserted after Set up Python:
- name: Get full Python versionid: full-python-versionrun: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
Alternatively, I think we can replace the steps.full-python-version.outputs.version with matrix.python-version as that's what we're running with here?
The text was updated successfully, but these errors were encountered:
I wonder if there's a step missing in the
ci.yml
GitHub action file, where the cache setup is looking forsteps.full-python-version.outputs.version
, but there is nothing likefull-python-version
in thesteps
. I believe, after some googling, that this is the step that should be inserted afterSet up Python
:Alternatively, I think we can replace the
steps.full-python-version.outputs.version
withmatrix.python-version
as that's what we're running with here?The text was updated successfully, but these errors were encountered: