From 0ad86cfafeea18b6acbcac276f75a30d1d497abb Mon Sep 17 00:00:00 2001 From: Pieter Marsman Date: Mon, 24 Jun 2024 08:14:33 +0200 Subject: [PATCH] Update textual instructions as well --- CONTRIBUTING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 55dfcc25..daa600c1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -63,10 +63,10 @@ Any contribution is appreciated! You might want to: 2. Install dev dependencies ```sh - pip install -e .[dev] + pip install -e ".[dev]" ``` -3. Run the tests +3. Run all formatting, linting and tests On all Python versions: @@ -74,8 +74,8 @@ Any contribution is appreciated! You might want to: nox ``` - Or on a single Python version: + Or only the tests on a single Python version: ```sh - nox -e tests-3.9 + nox -e tests-3.12 ```