-
Notifications
You must be signed in to change notification settings - Fork 18
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
Don't require Microsoft Build Tools on 3.10+ Pythons #2524
Comments
…quire Microsoft Build Tools on Python 3.10+ Re #2524
It works! The problem is caused by missing wheels on PyPi for Python 3.10+ which resulted into this error when doing
In our current requirements, there are two packages that do not have wheels on PyPi for Python 3.11: @soininen and @manuelma is it Ok if I update spinedb_api's requirements.txt to install |
I think we can drop The We do not (yet) support Oracle databases for Spine data (only SQLite and MySQL are supported). The only use for |
This should be fixed now in 0.8-dev branches. Anybody want to try this out before I merge this to master as well? I also updated readme.md so that visual studio build tools are not mentioned there anymore and we now suggest using Python 3.11 instead of Python 3.9. |
Nice work! Hopefully the performance improvements of Python 3.11 will show up in Toolbox as well. |
@PekkaSavolainen Can this issue be closed now? |
I'm 95% sure this is fixed but I was waiting on somebody to confirm. I guess I should merge the fix to master as well and then close it. |
This is still a problem on Python 3.12. Tried pipx install on Win11 with Python 3.12.3 installed from the
The same thing happens with a regular Python 3.12 downloaded from |
This should now be fixed for Python 3.12! I'll expect this same thing to happen when Python 3.13 is released (at least in the beginning of it's life cycle). |
I think the culprit here is the
psutil
package, which is a dependency of our dependency (not sure which one). It seems that we have locked the psutil version to < 5.9.2 in toolbox. 5.9.1 requires the Microsoft build tools but newer versions of psutil don't. I'll just remove the psutil requirement lock and see what happens.The text was updated successfully, but these errors were encountered: