diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 499cb3c..ca4e5bd 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -48,7 +48,7 @@ jobs: if: runner.os == 'Linux' uses: docker/setup-qemu-action@v3 - name: Build wheels - uses: pypa/cibuildwheel@v2.21.1 + uses: pypa/cibuildwheel@v2.22.0 with: output-dir: wheelhouse env: diff --git a/README.md b/README.md index 0fccd83..c7ff4e4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # mmh3 [![Documentation Status](https://readthedocs.org/projects/mmh3/badge/?version=latest)](https://mmh3.readthedocs.io/en/latest/?badge=latest) -[![GitHub Super-Linter](https://github.com/hajimes/mmh3/workflows/Super-Linter/badge.svg?branch=master)](https://github.com/hajimes/mmh3/actions?query=workflow%3ASuper-Linter+branch%3Amaster) +[![GitHub Super-Linter](https://github.com/hajimes/mmh3/actions/workflows/superlinter.yml/badge.svg?branch=master)](https://github.com/hajimes/mmh3/actions?query=workflow%3ASuper-Linter+branch%3Amaster) [![Build](https://github.com/hajimes/mmh3/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/hajimes/mmh3/actions/workflows/build.yml?branch=master) [![PyPi Version](https://img.shields.io/pypi/v/mmh3.svg?style=flat-square&logo=pypi&logoColor=white)](https://pypi.org/project/mmh3/) [![Python Versions](https://img.shields.io/pypi/pyversions/mmh3.svg)](https://pypi.org/project/mmh3/) diff --git a/pyproject.toml b/pyproject.toml index b0d06ab..7ad5d22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,17 +31,17 @@ classifiers = [ [project.optional-dependencies] test = [ - "pytest == 8.3.3", + "pytest == 8.3.4", "pytest-sugar == 1.0.0" ] lint = [ - "black == 24.8.0", - "clang-format == 19.1.0", + "black == 24.10.0", + "clang-format == 19.1.5", "isort == 5.13.2", - "pylint == 3.3.1" + "pylint == 3.3.2" ] type = [ - "mypy == 1.11.2" + "mypy == 1.13.0" ] dev = [ "matplotlib == 3.7.3", @@ -52,16 +52,17 @@ dev = [ ] docs = [ "myst-parser == 4.0.0", - "shibuya == 2024.8.30", - "sphinx == 8.0.2" + "shibuya == 2024.12.13", + "sphinx == 8.1.3", + "sphinx-copybutton == 0.5.2" ] benchmark = [ "pymmh3 == 0.0.5", - "pyperf == 2.7.0", + "pyperf == 2.8.1", "xxhash == 3.5.0" ] plot = [ - "matplotlib == 3.9.2", + "matplotlib == 3.10.0", "pandas == 2.2.3" ]