-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
Fix #466 projex generates pyproject.toml #488
Conversation
- pksetup: removed tox, readthedocs support Fix #429 added readthedocs.yml Fix #386 projex generates proper sphinx and readthedocs.yml Fix #393 added pkcli.sphinx.prepare for readthedocs - Added sphinx test which also tests projex - Fixed various RST errors in modules Fix #449 use GitHub workflow actions/checkout@v4 (also projex)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
g tox
still shows some instances that I think can be removed.
I'm getting this error. Is projex broken? |
Actually not exactly that error, but it seems related.
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It works in my vm_devbox but not my local vm. I tried radia_run sirepo-dev and uninstalled/reinstalled pykern. I don't have any idea what's causing the failure.
It's probably an old python package on your local vm. |
Do you know how I can find out which package and/or how to fix it? |
You could run "pip list --outdated" to see old packages and update them using a command found here: Probably need to run "pip install -e ." in the sirepo and pykern directory afterward to downgrade anything. Maybe @robnagler has a better way to do this. |
Try this first: cd ~/src/radiasoft/pykern
pip install --upgrade --upgrade-strategy only-if-needed . If projex still fails, we have something that needs bumping in pyproject.toml. Then we would want to know which packages need updating and that's trickier to debug, because you have to upgrade packages one at a time. |
This fixed it. Thanks |
Fix 20240131 Update readthedocs generation #386 projex generates proper sphinx and readthedocs.yml Fix Extract readthedocs content from pksetup to a pkcli #393 added pkcli.sphinx.prepare for readthedocs