Skip to content

Bump cpp-linter/clang-tools-static-binaries to master-b35c5633 #119

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

Merged
merged 8 commits into from
May 29, 2025
Merged
Show file tree
Hide file tree
Changes from 4 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
1 change: 1 addition & 0 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
branches: [ "main" ]
paths:
- "clang_tools/*"
- "clang_tools/__init__.py"
- "tests/*"
- "**requirements*.txt"
- pyproject.toml
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v5.0.0
hooks:
- id: trailing-whitespace
exclude: \.output
Expand All @@ -12,11 +12,11 @@ repos:
- id: debug-statements
- id: requirements-txt-fixer
- repo: https://github.com/asottile/pyupgrade
rev: v3.15.1
rev: v3.20.0
hooks:
- id: pyupgrade
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.2.2
rev: v0.11.11
hooks:
- id: ruff
- id: ruff-format
Expand Down
3 changes: 2 additions & 1 deletion clang_tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The clang-tools package's base module."""

from .util import check_install_os


Expand All @@ -8,4 +9,4 @@
suffix = ".exe" if install_os == "windows" else ""

# tag of https://github.com/cpp-linter/clang-tools-static-binaries/releases
release_tag = "master-11dfa474"
release_tag = "master-b35c5633"
2 changes: 1 addition & 1 deletion tests/clang-format-12_macosx-amd64.sha512sum
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ced6413367e7930395c38cc97b82b201b833f424d3293ab2d188c2f4318a318b464b0dbb3e0427bf09ed3af05ee3308301826f8258ecdba8193c7e600fee146e clang-format-12_macosx-amd64
26e598d0ec9d5e38ca09e861969029aede5a27b5a761f1a5b354a2f2f65fcc9e5549dbc6f7a0bf14c2d8395dc971235da7659b46db5b570f0bbaba23511088a7 clang-format-12.0.1_macosx-amd64
2 changes: 1 addition & 1 deletion tests/clang-format-12_windows-amd64.sha512sum
Original file line number Diff line number Diff line change
@@ -1 +1 @@
682988cd469c37bd2e41b418fd67185be34d40a5586722f7482969cd5d961e089e99d75251e0a775266cb470d78f5569cde4eaa0041b57ab3338874ec07be290 *clang-format-12_windows-amd64
e677edcb802e151462b10855f1486ae7c82e48631653a88c8980d0e5510954376b14f01f1a702770ab3db798eefe42a2c76c24c4307965bda9d029755e894477 *clang-format-12.0.1_windows-amd64
1 change: 1 addition & 0 deletions tests/test_install.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests related to installing a clang tool."""

from pathlib import PurePath, Path
import os
import pytest
Expand Down
1 change: 1 addition & 0 deletions tests/test_main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests that relate to the main.py module."""

from typing import Optional, List
from argparse import ArgumentParser
import pytest
Expand Down
Loading