Replies: 4 comments
-
I'm getting this exact error using Linux on a virtual machine. My next step for debugging was going to be reverting back to Python 3.9 and trying the install again. What OS are you using? |
Beta Was this translation helpful? Give feedback.
-
Howdy Benjamin, Are you using Python 3.10? I don't have much experience with this latest version. I tend to run 3.9 right now. Revisiting these dependencies is on my list of BSK to do's this fall. Please post any findings here to share. |
Beta Was this translation helpful? Give feedback.
-
Just found this thread while dealing with the same problem on mac with python 3.9.13. My suggested fix is to replace Popen by run command, as suggested by subprocess docs, with check=True to fail if the command fails. stderr is pipe into stdout and both printed so that warning messages are still visible:
|
Beta Was this translation helpful? Give feedback.
-
I've been looking at this issue and have a fix for the depreciation warning. I'm finding that with Python 3.9.13, and Python 3.10.x I suspect, we need to have the newest |
Beta Was this translation helpful? Give feedback.
-
Hello everyone,
Following updates to my Python distribution, I've encountered a situation where 'python conanfile.py' fails due to several deprecation warning issued by setuptools.
I guess there are two distinct points to discuss here:
These tools are indeed deprecated, and though Basilisk can probably be installed just fine with them as of today, the Basilisk build process probably needs to be revised to account for this impending change
Even though these messages are just warnings, they cause the python connafile.py to fail because add_basilisk_to_sys_path() will exit should any message (error or warning) be issued. This is certainly more blocking.
Has this issue been encountered by the BSK developers ?
Cheers,
Ben
Beta Was this translation helpful? Give feedback.
All reactions