Merge commit 'e631b17fb15f161e3c89959e794d8fc5feadd7f8' on branch master into main.

This commit is contained in:
2024-10-26 00:38:12 -07:00
6 changed files with 30 additions and 11 deletions

View File

@@ -6,8 +6,13 @@
* added strikethru and footnotes to blag renders. * added strikethru and footnotes to blag renders.
## [unreleased] -- ## [unreleased] --
## [2.3.2] -- 2024-10-13
* Ignore FileNotFoundError when trying to get the last modified time of files
in directories. This happens for example with temporary emacs files.
* Added changelog to docs * Added changelog to docs
* removed ruff's target-version from pyproject.toml, this value defaults to the
projects requires-python
## [2.3.1] -- 2024-07-06 ## [2.3.1] -- 2024-07-06

View File

@@ -42,7 +42,12 @@ def get_last_modified(dirs: list[str]) -> float:
for dir in dirs: for dir in dirs:
for root, dirs, files in os.walk(dir): for root, dirs, files in os.walk(dir):
for f in files: for f in files:
mtime = os.stat(os.path.join(root, f)).st_mtime try:
mtime = os.stat(os.path.join(root, f)).st_mtime
except FileNotFoundError:
# ignore files that have been deleted since the os.walk
# call (for example temporary emacs files)
continue
if mtime > last_mtime: if mtime > last_mtime:
last_mtime = mtime last_mtime = mtime

10
debian/changelog vendored
View File

@@ -1,3 +1,13 @@
blag (2.3.2) unstable; urgency=medium
* Ignore FileNotFoundError when trying to get the last modified time of
files in directories. This happens for example with temporary emacs files.
* Added changelog to docs
* removed ruff's target-version from pyproject.toml, this value defaults to
the projects requires-python
-- Bastian Venthur <venthur@debian.org> Sun, 13 Oct 2024 20:12:29 +0200
blag (2.3.1) unstable; urgency=medium blag (2.3.1) unstable; urgency=medium
* added manpage * added manpage

View File

@@ -65,7 +65,6 @@ addopts = """
[tool.ruff] [tool.ruff]
line-length = 79 line-length = 79
target-version = "py310"
[tool.ruff.lint] [tool.ruff.lint]
select = [ select = [

View File

@@ -1,11 +1,11 @@
build==1.2.1 build==1.2.2.post1
mkdocs==1.6.0 mkdocs==1.6.1
mkdocs-material==9.5.31 mkdocs-material==9.5.39
mkdocstrings[python]==0.25.2 mkdocstrings[python]==0.26.1
twine==5.1.1 twine==5.1.1
wheel==0.44.0 wheel==0.44.0
pytest==8.3.2 pytest==8.3.3
pytest-cov==5.0.0 pytest-cov==5.0.0
ruff==0.6.0 ruff==0.6.9
mypy==1.11.1 mypy==1.11.2
types-markdown==3.6.0.20240316 types-markdown==3.7.0.20240822

View File

@@ -1,4 +1,4 @@
markdown==3.6 markdown==3.7
feedgenerator==2.1.0 feedgenerator==2.1.0
jinja2==3.1.4 jinja2==3.1.4
pygments==2.18.0 pygments==2.18.0