From 2fd4f74f151d5abe8e0e611491a90f2517ad0a36 Mon Sep 17 00:00:00 2001 From: John Franey <1728528+johnfraney@users.noreply.github.com> Date: Mon, 13 Jan 2025 12:50:02 -0400 Subject: [PATCH] docs: update CONTRIBUTING.rst (#484) Updates contributing docs to show how to install textblob and its dependencies now that they're managed by pyproject.toml and not dev-requirements.txt and setup.py --- CONTRIBUTING.rst | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 02cc8bd7..2054be06 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -35,11 +35,7 @@ Setting Up for Local Development 2. Install development requirements. It is highly recommended that you use a virtualenv. :: # After activating your virtualenv - $ pip install -r dev-requirements.txt - -3. Install TextBlob in develop mode. :: - - $ python setup.py develop + $ pip install -e '.[tests]' .. _extension-development: