Skip to content

Commit 61a09c1

Browse files
committed
python3
1 parent f617709 commit 61a09c1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

gitconsensus/gitconsensus

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
import click
33
import github3
44
import os

makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ install:
1414
ln -s -f $(ROOT_DIR)/bin/gitconsensus /usr/local/bin/gitconsensus
1515

1616
dependencies:
17-
if [ ! -d $(ROOT_DIR)/env ]; then virtualenv $(ROOT_DIR)/env; fi
18-
source $(ROOT_DIR)/env/bin/activate; yes w | pip install -r $(ROOT_DIR)/requirements.txt
17+
if [ ! -d $(ROOT_DIR)/env ]; then python3 -m venv $(ROOT_DIR)/env; fi
18+
source $(ROOT_DIR)/env/bin/activate; yes w | python3 -m pip install -r $(ROOT_DIR)/requirements.txt
1919

2020
uninstall:
2121
if [ -L /usr/local/bin/gitconsensus ]; then \

0 commit comments

Comments
 (0)