We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the doc is outdate because it's still using poetry while should be using pdm
https://github.com/tiangolo/sqlmodel/blob/376603efb2799f5b0565a7a29660601ed629d1fd/docs/contributing.md
The text was updated successfully, but these errors were encountered:
Hello @tiangolo, I also noticed this when making the development environment. After installing PDM and doing
pdm install -d
It creates a local venv and I'm also able to see the local changes made to sqlmodel. After activating the environment, when I do
pip list | grep mkdocs
I can see that mkdocs is installed in the newly created venv
mkdocs 1.6.0 mkdocs-autorefs 1.0.1 mkdocs-get-deps 0.2.0 mkdocs-markdownextradata-plugin 0.2.5 mkdocs-material 9.4.7 mkdocs-material-extensions 1.3.1 mkdocs-redirects 1.2.1 mkdocstrings 0.23.0 mkdocstrings-python 1.9.1
But when I do
cd scripts python docs.py
I get the error
ModuleNotFoundError: No module named 'mkdocs'
Can you please point me in the right direction if I'm doing anything wrong? I noticed this when I was building docs to see the changes. Thank You!
Sorry, something went wrong.
Also of note, the bash scripts/docs-live.sh command should be replaced with python scripts/docs.py live (or pdm run).
bash scripts/docs-live.sh
python scripts/docs.py live
pdm run
No branches or pull requests
Privileged issue
Issue Content
the doc is outdate because it's still using poetry while should be using pdm
https://github.com/tiangolo/sqlmodel/blob/376603efb2799f5b0565a7a29660601ed629d1fd/docs/contributing.md
The text was updated successfully, but these errors were encountered: