From 4bc279b7946b5eebf6ce9509ff02636bed6b83f9 Mon Sep 17 00:00:00 2001 From: Thibaut Voirand Date: Thu, 14 Nov 2024 11:55:55 +0000 Subject: [PATCH] Update setup section in contributing guide Use extra dependencies specifier (referring to pyproject.toml) in the instructions, instead of requirements txt files (which were removed in previous commits). --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 806c017f..7020942a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -126,8 +126,8 @@ cd bump-my-version python -m venv env source env/bin/activate -# Install the development requirements -python -m pip install -r requirements/dev.txt +# Install the project in editable mode with its optional dependencies +python -m pip install -e .[dev,test] ``` ### Run tests