From 1cf5d9dcc44c69fadd88fbac62bcc294712f55da Mon Sep 17 00:00:00 2001 From: Dominic Kempf Date: Tue, 7 Jan 2025 14:23:27 +0100 Subject: [PATCH] git-lfs v3.6.0 --- setup.py | 2 +- sphinx_lfs_content/__init__.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index b8f8f6f..ff59d32 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="sphinx_lfs_content", - version="1.1.7", + version="1.1.8", author="Dominic Kempf", author_email="dominic.kempf@iwr.uni-heidelberg.de", description="Ensure existence of LFS content in your LFS builds", diff --git a/sphinx_lfs_content/__init__.py b/sphinx_lfs_content/__init__.py index c46f752..bfc26e5 100644 --- a/sphinx_lfs_content/__init__.py +++ b/sphinx_lfs_content/__init__.py @@ -8,8 +8,8 @@ import tempfile -GIT_LFS_FILE = "https://github.com/git-lfs/git-lfs/releases/download/v3.5.1/git-lfs-linux-amd64-v3.5.1.tar.gz" -GIT_LFS_CHECKSUM = "6f28eb19faa7a968882dca190d92adc82493378b933958d67ceaeb9ebe4d731e" +GIT_LFS_FILE = "https://github.com/git-lfs/git-lfs/releases/download/v3.6.0/git-lfs-linux-amd64-v3.6.0.tar.gz" +GIT_LFS_CHECKSUM = "fff4746159aa7a7b42ef1aa30fed03b534df48a7dbe116d65296c0f0c43c594d" def lfs_setup(_, config): @@ -35,7 +35,7 @@ def lfs_setup(_, config): # This works around a bug in git-lfs where git-lfs is called recursively, # but the inner calls rely on git-lfs being in PATH. env = os.environ - env["PATH"] = os.environ["PATH"] + os.path.pathsep + os.path.join(tmp_dir, "git-lfs-3.5.1") + env["PATH"] = os.environ["PATH"] + os.path.pathsep + os.path.join(tmp_dir, "git-lfs-3.6.0") # Fetch the LFS content of the repository subprocess.check_call("git-lfs install".split(), env=env) @@ -51,4 +51,4 @@ def setup(app): app.add_config_value("lfs_content_post_commands", [], rebuild="") app.connect("config-inited", lfs_setup) - return {"version": "1.1.7", "parallel_read_safe": True} + return {"version": "1.1.8", "parallel_read_safe": True}