summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2021-06-07 08:43:46 -0700
committerJarrod Millman <jarrod.millman@gmail.com>2021-06-07 08:43:46 -0700
commit6267fe9e1e06424e25bd5325ca297c3538530818 (patch)
tree4e82b1dde482a022530b813d5cc06c41e983bf2f
parent251fa09289ee1e105295101a6a58f674eeb0fd92 (diff)
downloadnetworkx-remove-conda.tar.gz
Remove broken conda exampleremove-conda
-rw-r--r--CONTRIBUTING.rst22
1 files changed, 0 insertions, 22 deletions
diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst
index d15747e1..6a31454b 100644
--- a/CONTRIBUTING.rst
+++ b/CONTRIBUTING.rst
@@ -33,7 +33,6 @@ Development Workflow
- ``origin``, which refers to your personal fork
* Next, you need to set up your build environment.
- Here are instructions for two popular environment managers:
* ``venv`` (pip based)
@@ -57,27 +56,6 @@ Development Workflow
# Test your installation
PYTHONPATH=. pytest networkx
- * ``conda`` (Anaconda or Miniconda)
-
- ::
-
- # Create a conda environment named ``networkx-dev``
- conda create --name networkx-dev
- # Activate it
- conda activate networkx-dev
- # Install main development and runtime dependencies of networkx
- conda install -c conda-forge `for i in requirements/{default,developer,test}.txt; do echo -n " --file $i "; done`
- #
- # (Optional) Install pygraphviz, pydot, and gdal packages
- # These packages require that you have your system properly configured
- # and what that involves differs on various systems.
- # pip install -r requirements/extra.txt
- #
- # Install networkx from source
- pip install -e . --no-deps
- # Test your installation
- PYTHONPATH=. pytest networkx
-
* Finally, we recommend you use a pre-commit hook, which runs black when
you type ``git commit``::