From 619a6efd300301c5b8bd04057f54f69780a963a7 Mon Sep 17 00:00:00 2001 From: Danny Hermes Date: Mon, 17 Jun 2024 15:56:03 -0500 Subject: [PATCH] Update dependencies in `docs/requirements.txt` and `setup.py`. --- docs/requirements.txt | 6 +++--- setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 3d086f27..3ec550ce 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,8 +1,8 @@ # NumPy is required for building `bezier` from source. -numpy >= 1.25.2 +numpy >= 1.26.4, < 2 # Sphinx and related are required for building documentation. -Sphinx >= 6.2.1 +Sphinx >= 7.3.7 # See: https://github.com/readthedocs/sphinx_rtd_theme/issues/1463 sphinx-copybutton >= 0.5.2 sphinx-docstring-typing >= 0.0.4 -sphinx-rtd-theme >= 1.2.2 +sphinx-rtd-theme >= 2.0.0 diff --git a/setup.py b/setup.py index f86aa688..805f94cc 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ """.format( install_prefix=INSTALL_PREFIX_ENV, no_extension=NO_EXTENSION_ENV ) -REQUIREMENTS = ("numpy >= 1.25.2",) +REQUIREMENTS = ("numpy >= 1.26.4, < 2",) # See: https://www.python.org/dev/peps/pep-0508/ # Dependency specification for Python Software Packages EXTRAS_REQUIRE = {