Just a reminder to everyone that might have some issues. Arch updated the Python packages in the repos to 3.9. This means any python packages you have installed need to be "recompiled" in order for any python depends to work, otherwise, you will get missing depends on errors.
IF you were running seafile with python 3.8 before, running this command will let you know what python packages haven't been recompiled yet and write it to a file.
sudo pacman -Qqo /usr/lib/python3.8/site-packages/* | sort -u > rebuild.txt
Then run this to reinstalll packages (clean the packages, make sure it does a clean rebuild)
yay -S - < rebuild.txt
I can confirm seafile is working with python 3.9. Enjoy!
Pinned Comments