I wonder if someone has stumbled on this problem before. CS stopped to work after upgrade to Fedora 35. It compiles and installs OK, but when trying to run a case it results in an error
Code: Select all
Traceback (most recent call last):
File "/home/scratch/mstorti/TO-BACKUP/DATA-CD/saturne-vof/bin/code_saturne", line 67, in <module>
from cs_script import master_script
I solved it replacing in the sources sys.version[:3] with the following string:
Code: Select all
python_version = "%d.%d" % (sys.version_info.major,sys.version_info.minor)