Skip to content

Commit 3e7e6b5

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents e6e57b0 + dbf41fb commit 3e7e6b5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/run-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Set up python
4242
id: setup-python
43-
uses: actions/setup-python@v5.3.0
43+
uses: actions/setup-python@v5.6.0
4444
with:
4545
python-version: ${{ matrix.python-version }}
4646
architecture: ${{ matrix.architecture }}

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
repos:
33

44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v4.6.0
5+
rev: v5.0.0
66
hooks:
77
- id: check-yaml
88
- id: end-of-file-fixer
@@ -22,15 +22,15 @@ repos:
2222

2323
# Check for common yaml errors
2424
- repo: https://github.com/adrienverge/yamllint.git
25-
rev: v1.35.1
25+
rev: v1.37.0
2626
hooks:
2727
- id: yamllint
2828
args: [--no-warnings, -d, "{extends: relaxed, rules: {new-lines: disable}}"]
2929

3030
# Format markdown docs.
3131
- repo: https://github.com/executablebooks/mdformat
3232
# Do this before other tools "fixing" the line endings
33-
rev: 0.7.17
33+
rev: 0.7.22
3434
hooks:
3535
- id: mdformat
3636
args: [--number, --end-of-line=keep]
@@ -41,7 +41,7 @@ repos:
4141

4242
# Lint and Format code
4343
- repo: https://github.com/astral-sh/ruff-pre-commit
44-
rev: 'v0.6.6'
44+
rev: 'v0.11.6'
4545
hooks:
4646
- id: ruff
4747
args:
@@ -56,12 +56,12 @@ repos:
5656

5757
# Static typehint linting.
5858
- repo: https://github.com/pre-commit/mirrors-mypy
59-
rev: v1.11.2
59+
rev: v1.15.0
6060
hooks:
6161
- id: mypy
6262

6363
# Catch typos!
6464
- repo: https://github.com/codespell-project/codespell
65-
rev: v2.3.0
65+
rev: v2.4.1
6666
hooks:
6767
- id: codespell

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Like a pickle, only smaller\*.
1111
Tiny python package that compresses your pickles using gzip.
1212
Quacks like a pickle.
1313

14-
\* For small objects (\< 100 bytes) gzip overhead can end up increasing size.
14+
\* For small objects (< 100 bytes) gzip overhead can end up increasing size.
1515
Only squash your pickles when you are working with big objects.
1616

1717
______________________________________________________________________

0 commit comments

Comments
 (0)