diff --git a/.gitignore b/.gitignore index ced7313..a966824 100644 --- a/.gitignore +++ b/.gitignore @@ -2,8 +2,17 @@ # # SPDX-License-Identifier: Unlicense +*.mpy +.idea __pycache__ _build *.pyc .env +.python-version +build*/ bundles +*.DS_Store +.eggs +dist +**/*.egg-info +.vscode diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index aab5f1c..07f886c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,11 +4,11 @@ repos: - repo: https://github.com/python/black - rev: stable + rev: 20.8b1 hooks: - id: black - repo: https://github.com/fsfe/reuse-tool - rev: latest + rev: v0.12.1 hooks: - id: reuse - repo: https://github.com/pre-commit/pre-commit-hooks diff --git a/adafruit_rplidar.py b/adafruit_rplidar.py index d7b6d8f..5152d78 100644 --- a/adafruit_rplidar.py +++ b/adafruit_rplidar.py @@ -34,7 +34,7 @@ # pylint:disable=invalid-name,undefined-variable,global-variable-not-assigned # pylint:disable=too-many-arguments,raise-missing-from -__version__ = "0.0.1-auto.0" +__version__ = "0.0.0-auto.0" __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_RPLIDAR.git" SYNC_BYTE = b"\xA5"