Skip to content

Commit

Permalink
Merge pull request #17 from ssciwr/bump
Browse files Browse the repository at this point in the history
Bump to git-lfs v3.4.1
  • Loading branch information
dokempf authored Jan 8, 2024
2 parents 2bf1779 + 12025d2 commit 35bdac9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
pypi-deploy:
name: Deploying Python Package
runs-on: ubuntu-20.04
permissions:
id-token: write

steps:
- uses: actions/checkout@v4
Expand All @@ -21,7 +23,4 @@ jobs:
run: |
python setup.py sdist
- uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
- uses: pypa/gh-action-pypi-publish@v1.8.11
5 changes: 2 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html

import os
import subprocess
import sys

# -- Path setup --------------------------------------------------------------
Expand All @@ -18,11 +17,11 @@
# -- Project information -----------------------------------------------------

project = "sphinx_lfs_content"
copyright = "2021-2022, Scientific Software Center, Heidelberg University"
copyright = "2021-2023, Scientific Software Center, Heidelberg University"
author = "Dominic Kempf"

# The full version, including alpha/beta/rc tags
release = "1.1.3"
release = "1.1.4"

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="sphinx_lfs_content",
version="1.1.4",
version="1.1.5",
author="Dominic Kempf",
author_email="dominic.kempf@iwr.uni-heidelberg.de",
description="Ensure existence of LFS content in your LFS builds",
Expand Down
6 changes: 3 additions & 3 deletions sphinx_lfs_content/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
import tempfile


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"
GIT_LFS_FILE = "https://github.com/git-lfs/git-lfs/releases/download/v3.4.1/git-lfs-linux-amd64-v3.4.1.tar.gz"
GIT_LFS_CHECKSUM = "1772dc260961db27958088740b7e9ecebf945abad8c2d504d412448f53faf147"


def lfs_setup(_, config):
Expand Down Expand Up @@ -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.4", "parallel_read_safe": True}
return {"version": "1.1.5", "parallel_read_safe": True}

0 comments on commit 35bdac9

Please sign in to comment.