From 7b408449e2bc0416eb47f1e47e884de88d05fb2a Mon Sep 17 00:00:00 2001 From: danielfromearth Date: Wed, 6 Mar 2024 12:21:51 -0500 Subject: [PATCH 1/4] autoupdate pre-commit --- .pre-commit-config.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ba7dee6..ec9bb4a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ --- repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v4.5.0 hooks: - id: trailing-whitespace exclude: tests(/\w*)*/functional/t/trailing_whitespaces.py|tests/pyreverse/data/.*.html|doc/data/messages/t/trailing-whitespace/bad.py @@ -15,25 +15,25 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: 'v0.0.290' + rev: 'v0.3.0' hooks: - id: ruff args: [ "--fix" ] # https://github.com/python/black#version-control-integration - repo: https://github.com/psf/black - rev: 23.9.1 + rev: 24.2.0 hooks: - id: black-jupyter - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.5.1 + rev: v1.8.0 hooks: - id: mypy # Other Linters - repo: https://github.com/adrienverge/yamllint.git - rev: v1.32.0 + rev: v1.35.1 hooks: - id: yamllint args: ["-d {extends: relaxed, rules: {line-length: {max: 120}}}"] From 65afb51a571b889f3230c6e5542b808cd7ad8bbb Mon Sep 17 00:00:00 2001 From: danielfromearth Date: Wed, 6 Mar 2024 12:21:56 -0500 Subject: [PATCH 2/4] add badges and center the logo in README.md --- README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0811fa8..3729245 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,22 @@ -[](stitchee_9_hex) +

+ batchee, a python package for grouping together filenames to enable subsequent batched operations (such as concatenation). +

+ +

+ + Project Status: Active – The project has reached a stable, usable state and is being actively developed + + + Code style + + + Mypy checked + +

+ +[//]: # (Using deprecated `align="center"` for the logo image and badges above, because of https://stackoverflow.com/a/62383408) # Overview From 4a22b0314b73a0c739bad2fde202552f21e74127 Mon Sep 17 00:00:00 2001 From: danielfromearth Date: Wed, 6 Mar 2024 12:22:40 -0500 Subject: [PATCH 3/4] update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2a5c5b..824005e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [issue/13](https://github.com/danielfromearth/batchee/issues/13): Add simple command line interface for testing - [issue/16](https://github.com/danielfromearth/batchee/issues/16): Add a logo - [PR #75](https://github.com/danielfromearth/batchee/pull/75): Add Docker build steps to GitHub Actions workflow +- [PR #83](https://github.com/danielfromearth/batchee/pull/83): Add readme badges ### Changed - [issue/11](https://github.com/danielfromearth/batchee/issues/11): Rename from concat_batcher to batchee - [issue/21](https://github.com/danielfromearth/batchee/issues/21): Improve CICD workflows From 3075f3ede3f27da32ac249fe24106ecdaa970f47 Mon Sep 17 00:00:00 2001 From: danielfromearth Date: Wed, 6 Mar 2024 12:24:28 -0500 Subject: [PATCH 4/4] fix PR link in CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 824005e..f1a5caf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [issue/13](https://github.com/danielfromearth/batchee/issues/13): Add simple command line interface for testing - [issue/16](https://github.com/danielfromearth/batchee/issues/16): Add a logo - [PR #75](https://github.com/danielfromearth/batchee/pull/75): Add Docker build steps to GitHub Actions workflow -- [PR #83](https://github.com/danielfromearth/batchee/pull/83): Add readme badges +- [PR #84](https://github.com/danielfromearth/batchee/pull/84): Add readme badges ### Changed - [issue/11](https://github.com/danielfromearth/batchee/issues/11): Rename from concat_batcher to batchee - [issue/21](https://github.com/danielfromearth/batchee/issues/21): Improve CICD workflows