sync fork with origin/main

This commit is contained in:
Thomas Hayner 2024-09-12 21:41:36 -06:00
parent 426c8d017f
commit 671f460465
25 changed files with 748 additions and 0 deletions

8
virtual/bin/pip3.12 Executable file
View file

@ -0,0 +1,8 @@
#!/Users/elliothayner/GitHub/linkedIn_AI_hawk/virtual/bin/python3.12
# -*- 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())