diff --git a/CHANGES b/CHANGES index 4655a5a..5c097ed 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,10 @@ +3.0.1-31 | 2024-05-08 09:57:29 -0700 + + * Make requirements.txt match pyproject file (Tim Wojtulewicz, Corelight) + + 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. + 3.0.1-29 | 2024-05-08 09:38:06 -0700 * Remove python2 `urlparse` (Benjamin Bannier) diff --git a/VERSION b/VERSION index 486a086..1f43152 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.1-29 +3.0.1-31 diff --git a/doc/man/zkg.1 b/doc/man/zkg.1 index 4b8bec4..34216eb 100644 --- a/doc/man/zkg.1 +++ b/doc/man/zkg.1 @@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. -.TH "ZKG" "1" "May 08, 2024" "3.0.1-29" "Zeek Package Manager" +.TH "ZKG" "1" "May 08, 2024" "3.0.1-31" "Zeek Package Manager" .SH NAME zkg \- Zeek Package Manager .sp 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 diff --git a/zeekpkg/__init__.py b/zeekpkg/__init__.py index 6713856..7d1a9e2 100644 --- a/zeekpkg/__init__.py +++ b/zeekpkg/__init__.py @@ -9,7 +9,7 @@ import logging -__version__ = "3.0.1-29" +__version__ = "3.0.1-31" __all__ = ["manager", "package", "source", "template", "uservar"] # noqa: F405 LOG = logging.getLogger(__name__)