Skip to content

Commit

Permalink
Merge pull request #536 from tlsfuzzer/new-setuptools
Browse files Browse the repository at this point in the history
use the new calling convention for setuptools
  • Loading branch information
tomato42 authored Dec 16, 2024
2 parents 7284d46 + 8bf0261 commit 4e16574
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ COVERAGE3 := $(shell which coverage3 2>/dev/null)

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

.PHONY: install
install:
./setup.py install
python -m pip install .

.PHONY : clean
clean:
Expand All @@ -36,7 +36,7 @@ docs:
$(MAKE) -C docs html

dist: docs
./setup.py sdist
python -m build

.PHONY : test
test:
Expand Down

0 comments on commit 4e16574

Please sign in to comment.