Skip to content

Commit

Permalink
Merge branch 'master' of github.com:agronholm/cbor2
Browse files Browse the repository at this point in the history
  • Loading branch information
Sekenre committed Jun 2, 2023
2 parents 25b8e9b + da0d178 commit cabfde5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,28 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/asottile/pyupgrade
rev: v3.3.0
rev: v3.3.2
hooks:
- id: pyupgrade
args: [ "--py37-plus" ]

- repo: https://github.com/psf/black
rev: 22.10.0
rev: 23.3.0
hooks:
- id: black

- repo: https://github.com/pycqa/isort
rev: 5.10.1
rev: 5.12.0
hooks:
- id: isort

- repo: https://github.com/csachs/pyproject-flake8
rev: v6.0.0
rev: v6.0.0.post1
hooks:
- id: pyproject-flake8

- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.9.0
rev: v1.10.0
hooks:
- id: python-check-blanket-noqa
- id: python-check-blanket-type-ignore
Expand Down
2 changes: 1 addition & 1 deletion docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Basic usage

Serializing and deserializing with cbor2 is pretty straightforward::

from cbor2 import dumps, loads
from cbor2 import dumps, loads, load

# Serialize an object as a bytestring
data = dumps(['hello', 'world'])
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@ def check_libc():
setup(
use_scm_version={"version_scheme": "guess-next-dev", "local_scheme": "dirty-tag"},
setup_requires=["setuptools >= 61", "setuptools_scm >= 6.4"],
**kwargs
**kwargs,
)

0 comments on commit cabfde5

Please sign in to comment.