Skip to content

Commit 4e16574

Browse files
authored
Merge pull request #536 from tlsfuzzer/new-setuptools
use the new calling convention for setuptools
2 parents 7284d46 + 8bf0261 commit 4e16574

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ COVERAGE3 := $(shell which coverage3 2>/dev/null)
1010

1111
.PHONY : default
1212
default:
13-
@echo To install tlslite run \"./setup.py install\" or \"make install\"
13+
@echo To install tlslite run \"python -m pip install .\" or \"make install\"
1414

1515
.PHONY: install
1616
install:
17-
./setup.py install
17+
python -m pip install .
1818

1919
.PHONY : clean
2020
clean:
@@ -36,7 +36,7 @@ docs:
3636
$(MAKE) -C docs html
3737

3838
dist: docs
39-
./setup.py sdist
39+
python -m build
4040

4141
.PHONY : test
4242
test:

0 commit comments

Comments
 (0)