From 995742ace202fcef418a6ba214bde5b5c3b989c6 Mon Sep 17 00:00:00 2001 From: Marco Esters Date: Thu, 13 Oct 2022 11:00:53 -0700 Subject: [PATCH] Update deprecated installation methods --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 5e47aa31..f4a2a211 100644 --- a/Makefile +++ b/Makefile @@ -88,9 +88,11 @@ release: dist ## package and upload a release twine upload dist/* dist: clean ## builds source and wheel package - python setup.py sdist - python setup.py bdist_wheel + python -m build ls -l dist install: clean ## install the package to the active Python's site-packages - python setup.py install + pip install . + +dev: clean ## install the package's development version + pip install -e .