-
Notifications
You must be signed in to change notification settings - Fork 1
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
Migrate to poetry #191
Migrate to poetry #191
Conversation
Commands: poetry config virtualenvs.create true --local poetry config virtualenvs.in-project true --local
With commands: cat requirements.txt | grep -v '#' | xargs poetry add cat test_requirements.txt | grep -v '#' | xargs poetry add --group test
Move tool.project sections to tool.poetry
Co-authored-by: Leszek Grzanka <[email protected]>
Co-authored-by: Leszek Grzanka <[email protected]>
I tried to run this branch in UI. Unfortunately, it doesn't work for now. I read Pyodide documentation, and it can load public packages but only for
Unfortunately, SciPy doesn't provide such package. We can update Pyodide to the latest version (0.25.0) for now. I will lock version of SciPy in converter for now to |
Message: Because yaptide-converter depends on scipy (1.11.2) which requires Python <3.13,>=3.9, version solving failed. Pyodide 0.25.0: https://pyodide.org/en/0.25.0/usage/packages-in-pyodide.html
@hendzeld another idea would be to get rid of scipy. It is being used only to handle rotation matrix. That could be moved to pure-python code. |
Maybe we should do this in in a different PR. Regarding current version: |
Good, we can separate the issues. Anyway thanks for deep inspection of the issue ! |
Migrate from Setuptools to Poetry