summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2022-02-26 04:12:12 -0800
committerGitHub <noreply@github.com>2022-02-26 16:12:12 +0400
commitfff976fdb5cfc384269bdd5e2ed0db972a9ffdff (patch)
treeafb95e812c14e7996430f67201b188d9d042acac
parent12d5f9bae34cd8ecc6e63aef0f7bea9542aeddc0 (diff)
downloadnetworkx-fff976fdb5cfc384269bdd5e2ed0db972a9ffdff.tar.gz
Remove stuff conda doesn't support (#5361)
* Remove stuff conda doesn't support * Add note so we don't forget why we did this
-rw-r--r--.circleci/config.yml1
-rw-r--r--requirements/developer.txt2
-rw-r--r--requirements/doc.txt6
-rw-r--r--requirements/test.txt1
4 files changed, 5 insertions, 5 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index eb85c36c..d56391ba 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -84,6 +84,7 @@ jobs:
source venv/bin/activate
pip install --upgrade pip wheel setuptools
pip install -r requirements/default.txt -r requirements/test.txt
+ pip install pytest-mpl # NOTE: specified here to avoid confusing conda
pip list
- run:
diff --git a/requirements/developer.txt b/requirements/developer.txt
index 152a28ba..057e25ee 100644
--- a/requirements/developer.txt
+++ b/requirements/developer.txt
@@ -1,4 +1,4 @@
-black~=22.1
+black==22.1
pyupgrade>=2.31
pre-commit>=2.17
mypy>=0.931
diff --git a/requirements/doc.txt b/requirements/doc.txt
index 81fe4d49..945e3195 100644
--- a/requirements/doc.txt
+++ b/requirements/doc.txt
@@ -1,6 +1,6 @@
-sphinx~=4.4
-pydata-sphinx-theme~=0.8
-sphinx-gallery~=0.10
+sphinx>=4.4
+pydata-sphinx-theme>=0.8
+sphinx-gallery>=0.10
numpydoc>=1.2
pillow>=9.0
nb2plots>=0.6
diff --git a/requirements/test.txt b/requirements/test.txt
index 5e623e78..0c799617 100644
--- a/requirements/test.txt
+++ b/requirements/test.txt
@@ -1,4 +1,3 @@
pytest>=7.0
pytest-cov>=3.0
-pytest-mpl>=0.14; platform_python_implementation!='PyPy' and python_version<='3.10'
codecov>=2.1