diff --git a/setup.py b/setup.py index 914d246..3fc9e1b 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="sphinx_lfs_content", - version="1.1.3", + version="1.1.4", 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 a586cf1..e322d82 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.3.0/git-lfs-linux-amd64-v3.3.0.tar.gz" -GIT_LFS_CHECKSUM = "6a4e6bd7d06d5c024bc70c8ee8c9da143ffc37d2646e252a17a6126d30cdebc1" +GIT_LFS_FILE = "https://github.com/git-lfs/git-lfs/releases/download/v3.4.0/git-lfs-linux-amd64-v3.4.0.tar.gz" +GIT_LFS_CHECKSUM = "60b7e9b9b4bca04405af58a2cd5dff3e68a5607c5bc39ee88a5256dd7a07f58c" 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.3.0") + env["PATH"] = os.environ["PATH"] + os.path.pathsep + os.path.join(tmp_dir, "git-lfs-3.4.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.3", "parallel_read_safe": True} + return {"version": "1.1.4", "parallel_read_safe": True}