Skip to content

Commit f69c12a

Browse files
committed
Fix msgpack version specification
1 parent fb8ee68 commit f69c12a

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.pre-commit-config.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.3.0
3+
rev: v4.4.0
44
hooks:
55
- id: check-case-conflict
66
- id: check-merge-conflict
@@ -12,30 +12,31 @@ repos:
1212
- id: trailing-whitespace
1313

1414
- repo: https://github.com/asottile/pyupgrade
15-
rev: v3.1.0
15+
rev: v3.3.1
1616
hooks:
1717
- id: pyupgrade
1818
name: PyUpgrade 3.6+
1919
args: ["--py36-plus"]
2020
exclude: ^bin/
2121

2222
- repo: https://github.com/pycqa/flake8
23-
rev: 5.0.4
23+
rev: 6.0.0
2424
hooks:
2525
- id: flake8
2626

2727
- repo: https://github.com/PyCQA/isort
28-
rev: 5.10.1
28+
rev: 5.12.0
2929
hooks:
3030
- id: isort
3131
args: [--profile, black]
3232

3333
- repo: https://github.com/psf/black
34-
rev: 22.10.0
34+
rev: 22.12.0
3535
hooks:
3636
- id: black
3737

3838
- repo: https://github.com/asottile/setup-cfg-fmt
39-
rev: v2.0.0
39+
rev: v2.2.0
4040
hooks:
4141
- id: setup-cfg-fmt
42+
args: ["--min-py3-version", "3.6"]

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ classifiers =
2121

2222
[options]
2323
install_requires =
24-
msgpack>=1.*
24+
msgpack>=1.0
2525
numpy
2626
sortedcontainers
2727
importlib-metadata;python_version<"3.8"

0 commit comments

Comments
 (0)