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
Using poetry I'm seeing poetry fail to resolve (taking hours on Github Actions) when pycognito is in the dependency list.
It appears to be because the dependency specifier boto3>=1.10.49 includes many hundreds of released versions of boto3, poetry has to download the individual packages to inspect them to work out the transitive dependencies. This isn't an issue with your dependency specification as there shouldn't be any requirement to only support the most recent 10's of releases. But on the off chance this helps other users, I'm going to restrict my own project to require a more recent version of boto3 to work around poetry.
The text was updated successfully, but these errors were encountered:
Using poetry I'm seeing poetry fail to resolve (taking hours on Github Actions) when pycognito is in the dependency list.
It appears to be because the dependency specifier
boto3>=1.10.49
includes many hundreds of released versions of boto3, poetry has to download the individual packages to inspect them to work out the transitive dependencies. This isn't an issue with your dependency specification as there shouldn't be any requirement to only support the most recent 10's of releases. But on the off chance this helps other users, I'm going to restrict my own project to require a more recent version of boto3 to work around poetry.The text was updated successfully, but these errors were encountered: