From b2dcd8f1581f7ba18fb29255490d3599af478e94 Mon Sep 17 00:00:00 2001 From: Michael Williamson Date: Sun, 10 Mar 2024 12:09:13 +0000 Subject: [PATCH] Update to jq 1.7.1 --- CHANGELOG.rst | 2 ++ setup.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8a30a3f..1e14bde 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,8 @@ Changelog 1.7.0 ----- +* Update to jq 1.7.1. + * Include tox.ini in sdist. * Use the version of oniguruma distributed with jq. diff --git a/setup.py b/setup.py index 73f8b94..de0b635 100644 --- a/setup.py +++ b/setup.py @@ -24,8 +24,8 @@ def _read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() -jq_lib_tarball_path = _dep_source_path("jq-1.7.tar.gz") -jq_lib_dir = _dep_build_path("jq-1.7") +jq_lib_tarball_path = _dep_source_path("jq-1.7.1.tar.gz") +jq_lib_dir = _dep_build_path("jq-1.7.1") class jq_with_deps_build_ext(build_ext): def run(self):