Skip to content

Commit

Permalink
Merge pull request #1329 from wingtk/update-2024.4.28
Browse files Browse the repository at this point in the history
Update fribidi and libarchive
  • Loading branch information
danyeaw authored Apr 29, 2024
2 parents b274db6 + 8fce0ec commit f84e18a
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 67 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: check-yaml
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.9.0.6
rev: v0.10.0.1
hooks:
- id: shellcheck
args: [--exclude, SC1017]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.8.0
rev: v1.10.0
hooks:
- id: mypy
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.1.13'
rev: 'v0.4.2'
hooks:
- id: ruff
args: [--fix]
Expand Down
6 changes: 3 additions & 3 deletions gvsbuild/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ def _get_project_data(project):
hasattr(project, "latest_version")
and project.latest_version
):
params[
"latest_version"
] = f"{str(project.latest_version):<45}"
params["latest_version"] = (
f"{str(project.latest_version):<45}"
)
else:
params["latest_version"] = "undefined"
print("\t{name} {version} {latest_version}".format(**params))
Expand Down
4 changes: 2 additions & 2 deletions gvsbuild/projects/fribidi.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ def __init__(self):
Project.__init__(
self,
"fribidi",
version="1.0.13",
version="1.0.14",
archive_url="https://github.com/fribidi/fribidi/releases/download/v{version}/fribidi-{version}.tar.xz",
hash="7fa16c80c81bd622f7b198d31356da139cc318a63fc7761217af4130903f54a2",
hash="76ae204a7027652ac3981b9fa5817c083ba23114340284c58e756b259cd2259a",
dependencies=["ninja", "meson"],
)

Expand Down
2 changes: 1 addition & 1 deletion gvsbuild/projects/libarchive.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(self):
Project.__init__(
self,
"libarchive",
version="3.7.3",
version="3.7.4",
archive_url="https://libarchive.org/downloads/libarchive-{version}.tar.xz",
hash="63e7a7174638fc7d6b79b4c8b0ad954e0f4f45abe7239c1ecb200232aa9a43d2",
dependencies=[
Expand Down
1 change: 0 additions & 1 deletion gvsbuild/utils/simple_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

"""Simple user interface for info, log & debug messages."""


import ctypes
import datetime
import os
Expand Down
96 changes: 43 additions & 53 deletions poetry.lock

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gvsbuild"
version = "2024.4.1"
version = "2024.5.0"
description = "GTK stack for Windows"
authors = ["Ignacio Casal Quinteiro <qignacio@amazon.com>", "Dan Yeaw <dan@yeaw.me>"]
license = "GPL-2.0-only"
Expand Down Expand Up @@ -55,8 +55,10 @@ deps = pytest
"""

[tool.ruff]
ignore = ["E501"]
line-length = 88

[tool.ruff.lint]
ignore = ["E501"]
select = [
"B",
"B9",
Expand All @@ -67,7 +69,7 @@ select = [
]
extend-select = ["I"]

[tool.ruff.mccabe]
[tool.ruff.lint.mccabe]
max-complexity = 20

[tool.ruff.lint.flake8-bugbear]
Expand Down

0 comments on commit f84e18a

Please sign in to comment.