Skip to content

Commit

Permalink
Updating minimums for many dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
dhermes committed Oct 5, 2020
1 parent e92e09b commit 429b56a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# NumPy is required for building `bezier` from source.
numpy >= 1.18.1
numpy >= 1.19.2
# Sphinx and related are required for building documentation.
Sphinx >= 2.4.4, < 3
sphinx-docstring-typing >= 0.0.4
Expand Down
14 changes: 7 additions & 7 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
IS_MACOS = sys.platform == "darwin"
IS_WINDOWS = os.name == "nt"
DEPS = {
"black": "black >= 19.10b0",
"black": "black >= 20.8b1",
"cmake-format": "cmake-format >= 0.6.5",
"cmake": "cmake >= 3.15.3",
"cmake": "cmake >= 3.18.2",
"coverage": "coverage",
"Cython": "Cython >= 0.29.21",
"docutils": "docutils",
Expand All @@ -44,12 +44,12 @@
"numpy": "numpy >= 1.18.1",
"pycobertura": "pycobertura >= 1.0.0",
"Pygments": "Pygments",
"pylint": "pylint >= 2.4.4",
"pytest": "pytest >= 5.3.2",
"pylint": "pylint >= 2.6.0",
"pytest": "pytest >= 6.1.1",
"pytest-cov": "pytest-cov",
"scipy": "scipy >= 1.4.1",
"sympy": "sympy >= 1.5.1",
"seaborn": "seaborn >= 0.9.0",
"scipy": "scipy >= 1.5.2",
"sympy": "sympy >= 1.6.2",
"seaborn": "seaborn >= 0.11.0",
}
BASE_DEPS = (DEPS["numpy"], DEPS["pytest"], DEPS["importlib-metadata"])
NOX_DIR = os.path.abspath(os.path.dirname(__file__))
Expand Down
8 changes: 4 additions & 4 deletions scripts/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# NumPy is required for building `bezier` from source.
numpy >= 1.18.1
numpy >= 1.19.2
# SymPy and SciPy are optional dependencies for pure-Python implementations.
scipy >= 1.4.1
sympy >= 1.5.1
scipy >= 1.5.2
sympy >= 1.6.2
# Test requirements.
pytest >= 5.3.2
pytest >= 6.1.1

0 comments on commit 429b56a

Please sign in to comment.