Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to git-lfs v3.4.1 #17

Merged
merged 2 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,17 @@ jobs:
pypi-deploy:
name: Deploying Python Package
runs-on: ubuntu-20.04
permissions:
id-token: write

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
name: Install Python

- name: Build source distribution
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}