Skip to content

Commit

Permalink
prevent -s option for pip unless portable version
Browse files Browse the repository at this point in the history
-s option won't work in venv
  • Loading branch information
ltdrdata committed Jul 3, 2023
1 parent d42bc47 commit 696bfe4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions install.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
pip_install = [sys.executable, '-s', '-m', 'pip', 'install']
mim_install = [sys.executable, '-s', '-m', 'mim', 'install']
else:
pip_install = [sys.executable, '-s', '-m', 'pip', 'install']
mim_install = [sys.executable, '-s', '-m', 'mim', 'install']
pip_install = [sys.executable, '-m', 'pip', 'install']
mim_install = [sys.executable, '-m', 'mim', 'install']


def remove_olds():
Expand Down
2 changes: 1 addition & 1 deletion modules/impact/config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import configparser
import os

version = "V2.20.1"
version = "V2.20.2"

dependency_version = 1

Expand Down

0 comments on commit 696bfe4

Please sign in to comment.