-
-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Poetry add mkdocs-table-reader-plugin hangs when resolving dependencies #28
Comments
I think it's due to the pandas dependency, which requires Python 3.8 or higher, and I was using Python 3.7. Here's what I did to discover the isuue: I deleted the lock file, and re-ran poetry update, but I added the -vvv for verbose output ( You can see the stack trace below: |
I got it working after updating my poetry env to use Python 3.9.
As I said, if you would like me to contribute my notes to the documentation, I am more than happy to; otherwise, do what you want with this issue. |
This package requires mkdocs-table-reader-plugin/setup.py Line 28 in 908c8a2
So, this is not a problem with this plugin. In your case, it seems poetry is not allowing for this backtracking (copied from the stacktrace):
This line Good that upgrading python solves it. Python 3.7 supports ends in 11 months (https://endoflife.date/python), so probably best to upgrade your python version anyway :) |
I tried installing mkdocs-table-reader-plugin using
poetry add mkdocs-table-reader-plugin
but it hangs and never resolves.I ran the poetry command at 1:38pm, and it added
mkdocs-table-reader-plugin = "^1.1.0"
to my pyproject.toml file, but when it got to theResolving dependencies...
state, it just stalled.I let it run
My Environment:
OS: Windows 10
Python - using 3.7 in my virtual environment
Project I'm trying to add it to is at file-clerk repo (note: I'm waiting to push my latest commit until I get this resolved, so you won't see the code.
It's now 2:10 over 40 minutes after I ran the command, and it's still hanging.
I'm going to try the suggestions from Poetry install is stuck on specific dependency with "pending..."
If it works, I'll happily contribute to the docs if you like.
I'm attaching the current state of the pyproject.toml and poetry.lock (as txt files [pyproject.toml.txt]
The text was updated successfully, but these errors were encountered: