Fix cursor closed error, improve feed parsing, and update worker counts

This commit is contained in:
jlimolina 2025-06-13 14:02:32 +02:00
parent ce19d301e6
commit 824ff0539d
523 changed files with 190411 additions and 355 deletions

8
bin/pip3.12 Executable file
View file

@ -0,0 +1,8 @@
#!/home/x/rss/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal.cli.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())