From c2245031b291246d664b9dfedd8cd4a6a0ae1654 Mon Sep 17 00:00:00 2001 From: Maximiliano Greco Date: Mon, 21 Feb 2022 20:14:25 +0100 Subject: [PATCH] bld: fix install process --- Makefile | 4 ++-- Pipfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b5a67d4..5bb0eec 100644 --- a/Makefile +++ b/Makefile @@ -4,11 +4,11 @@ venv: .PHONY: dev dev: - pipenv install -e . --dev + pipenv install --dev .PHONY: install install: - pipenv install . + pipenv install --skip-lock .PHONY: test test: diff --git a/Pipfile b/Pipfile index c53e2a1..68b0252 100644 --- a/Pipfile +++ b/Pipfile @@ -10,7 +10,7 @@ pandas = "*" black = "*" flake8 = "*" pdbpp = "*" -IneqPy = {editable = true, path = "."} +IneqPy = {path = "."} [dev-packages] scipy = "*"