From dfc2784336196463b2e514af9808fcce26f25e7f Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Wed, 8 May 2024 09:47:01 -0700 Subject: [PATCH] Make requirements.txt match pyproject file Notably, the two versions listed here are the current releases. The current setting causes RTD to fail since it can't find versions newer than those. --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 4cfdbc4..10f7313 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ # NOTE: Dependencies should go into `pyproject.toml`. We keep this file to e.g., support RTD. # Requirements for general zkg usage -GitPython>3.1.43 -semantic_version>2.10.0 +GitPython>=3.1.43 +semantic_version>=2.10.0 # Requirements for development (e.g. building docs) btest>=1.1 Sphinx>=7.2.6