Open charlesbmi opened 1 year ago
Ran into this error:
Version 3.5 was not found in the local cache
Error: Version 3.5 with arch x[6](https://github.com/eric-wieser/numpy_ringbuffer/actions/runs/4684709218/jobs/8304464362#step:3:7)4 not found
I tried removing the deprecated Python versions. If that doesn't fix it, we could clear the cache before looking for Python versions:
- name: Clear the Python setup cache
uses: actions/cache@v2
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-python-${{ matrix.python-version }}-deps-${{ hashFiles('**/poetry.lock') }}
Should resolve the workflow error:
References:
--use-pep517
): https://github.com/pypa/pip/issues/8559