This commit is contained in:
Egor Matveev
2024-12-28 22:47:13 +03:00
parent 30b587e564
commit c1249bfcd0
16 changed files with 465 additions and 4 deletions

8
venv/bin/pip3 Executable file
View File

@@ -0,0 +1,8 @@
#!/Users/e.matveev/sprint/queues/venv/bin/python3.11
# -*- 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())