Skip to content

Commit 9f4bb20

Browse files
authored
Merge pull request #14 from askpatrickw/dunder-version
dunder version correction, pre-commit and gitignore
2 parents 4db6e7f + b13d4a3 commit 9f4bb20

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,17 @@
22
#
33
# SPDX-License-Identifier: Unlicense
44

5+
*.mpy
6+
.idea
57
__pycache__
68
_build
79
*.pyc
810
.env
11+
.python-version
12+
build*/
913
bundles
14+
*.DS_Store
15+
.eggs
16+
dist
17+
**/*.egg-info
18+
.vscode

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
repos:
66
- repo: https://github.com/python/black
7-
rev: stable
7+
rev: 20.8b1
88
hooks:
99
- id: black
1010
- repo: https://github.com/fsfe/reuse-tool
11-
rev: latest
11+
rev: v0.12.1
1212
hooks:
1313
- id: reuse
1414
- repo: https://github.com/pre-commit/pre-commit-hooks

adafruit_rplidar.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# pylint:disable=invalid-name,undefined-variable,global-variable-not-assigned
3535
# pylint:disable=too-many-arguments,raise-missing-from
3636

37-
__version__ = "0.0.1-auto.0"
37+
__version__ = "0.0.0-auto.0"
3838
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RPLIDAR.git"
3939

4040
SYNC_BYTE = b"\xA5"

0 commit comments

Comments
 (0)