From 429b56a465e9a05b37191f3eea0d926e14a1863f Mon Sep 17 00:00:00 2001 From: Danny Hermes Date: Sun, 4 Oct 2020 21:39:36 -0500 Subject: [PATCH] Updating minimums for many dependencies. --- docs/requirements.txt | 2 +- noxfile.py | 14 +++++++------- scripts/requirements.txt | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 03f9e73f..be71a64f 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -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 diff --git a/noxfile.py b/noxfile.py index bc64bcb2..95c2f87c 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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", @@ -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__)) diff --git a/scripts/requirements.txt b/scripts/requirements.txt index 7c0fa021..8f14897e 100644 --- a/scripts/requirements.txt +++ b/scripts/requirements.txt @@ -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