Skip to content

Commit ed2956f

Browse files
author
Taarini Sarath Chander
committed
Deprecated python3 setup.py
1 parent 40b6d02 commit ed2956f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

connector/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ develop:
8585
@echo ""
8686

8787
@pip3 uninstall -y yang.connector || true
88-
@$(PYTHON) setup.py develop -q
88+
@pip install -e . --no-deps
8989

9090
@echo "Completed building and installing: $@"
9191
@echo ""
@@ -98,7 +98,7 @@ undevelop:
9898
@echo "Uninstalling $(PKG_NAME) development distributable: $@"
9999
@echo ""
100100

101-
@$(PYTHON) setup.py develop -q --uninstall
101+
@pip uninstall $(PKG_NAME) -y
102102

103103
@echo "Completed uninstalling: $@"
104104
@echo ""

ncdiff/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ develop:
8484
@echo ""
8585

8686
@pip3 uninstall -y yang.ncdiff || true
87-
@$(PYTHON) setup.py develop -q
87+
@pip install -e . --no-deps
8888

8989
@echo "Completed building and installing: $@"
9090
@echo ""
@@ -97,7 +97,7 @@ undevelop:
9797
@echo "Uninstalling $(PKG_NAME) development distributable: $@"
9898
@echo ""
9999

100-
@$(PYTHON) setup.py develop -q --uninstall
100+
@pip uninstall $(PKG_NAME) -y
101101

102102
@echo "Completed uninstalling: $@"
103103
@echo ""

0 commit comments

Comments
 (0)