Closed alanwilter closed 2 years ago
Hi @alanwilter. Sorry for the delay, I haven't checked my GitHub notifications in a while.
Anyways, there was a point in time where this action was more sophisticated, but now all this action does is call pip install poetry
no different than what you do in your second example:
https://github.com/abatilo/actions-poetry/blob/7044c9c69e0265717d52471f66033b8d0e2a69ff/action.yml#L16
Once composite actions became a thing, there was no need for this action to have any more smarts in it.
That being said, thanks for reporting this and I'll try to find some time to figure out why 3.10 doesn't seem to work even though it's a very mundane action.
Hi @abatilo .
I'm not sure what your contributing preferences are, but I got this error and found the fix in my repo, so here's my PR: #47
Hope it's useful.
Great @duarte-pompeu! Heavens, it was a simple issue.
And, why not add 3.11 as well?
We can close this issue IMO.
3.11 isnt stable yet, so I didn't add it in my PR.
One thing I noticed it (but didn't want to mix different issues) is that the poetry versions are 1.0 and 1.1.11, but 1.1.13 is already available (and should be the last patch version before 1.2). Perhaps that would also be worth to update.
Since @duarte-pompeu fixed this, I'm going to go ahead and close now. Let me know if there's any reason that I should re-open the issue!
Thanks again for your contribution @duarte-pompeu
I have workflow that tests my application from python 3.6 to 3.10. After I added
abatilo/actions-poetry
it's now failing for3.10
:If I remove:
and put back:
It works for
3.10
. I must say that I'm addingopenbabel-wheel
which does have binaries ready forpython 3.6-9
while for3.10
it has to build one.I was hoping
abatilo/actions-poetry
could help me to save time buy caching the3.10
built wheel foropenbabel-wheel
.