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
When adding a prerelease Python to the matrix, which is something that's continuously the case because a newer Python emerges when the old version becomes stable, any project that depends on lxml will fail because lxml hasn't yet released binaries for that version (and probably won't until around the time that version becomes stable).
As a workaround, I've been applying continue-on-error for that version of Python:
When adding a prerelease Python to the matrix, which is something that's continuously the case because a newer Python emerges when the old version becomes stable, any project that depends on lxml will fail because lxml hasn't yet released binaries for that version (and probably won't until around the time that version becomes stable).
As a workaround, I've been applying
continue-on-error
for that version of Python:skeleton/.github/workflows/main.yml
Line 56 in aee344d
And while that sort-of works, it has a few downsides:
In that issue, I learned that it may be straightforward to unblock lxml (and maybe other popular compiled-from-source dependencies).
Let's apply that and any other build-time dependencies in the skeleton to reduce the instances of failures due to missing build-time dependencies.
The text was updated successfully, but these errors were encountered: