Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: adafruit/Adafruit_CircuitPython_ACeP7In
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.8.8
Choose a base ref
...
head repository: adafruit/Adafruit_CircuitPython_ACeP7In
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.0
Choose a head ref
  • 4 commits
  • 8 files changed
  • 2 contributors

Commits on Feb 21, 2025

  1. remove 8x displayio compatibility

    FoamyGuy committed Feb 21, 2025
    Copy the full SHA
    1a82192 View commit details
  2. convert to ruff pre-commit

    FoamyGuy committed Feb 21, 2025
    Copy the full SHA
    81b1ad0 View commit details
  3. remove pylintrc

    FoamyGuy committed Feb 21, 2025
    Copy the full SHA
    058808e View commit details

Commits on Feb 24, 2025

  1. Merge pull request #7 from FoamyGuy/remove_8x_displayio

    Convert to Ruff & remove 8x displayio compatibility
    tannewt authored Feb 24, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    73dd217 View commit details
Showing with 142 additions and 474 deletions.
  1. +11 −0 .gitattributes
  2. +11 −32 .pre-commit-config.yaml
  3. +0 −399 .pylintrc
  4. +4 −9 README.rst
  5. +8 −13 adafruit_acep7in.py
  6. +2 −6 docs/conf.py
  7. +6 −15 examples/acep7in_simpletest.py
  8. +100 −0 ruff.toml
11 changes: 11 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# SPDX-FileCopyrightText: 2024 Justin Myers for Adafruit Industries
#
# SPDX-License-Identifier: Unlicense

.py text eol=lf
.rst text eol=lf
.txt text eol=lf
.yaml text eol=lf
.toml text eol=lf
.license text eol=lf
.md text eol=lf
43 changes: 11 additions & 32 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,42 +1,21 @@
# SPDX-FileCopyrightText: 2020 Diego Elio Pettenò
# SPDX-FileCopyrightText: 2024 Justin Myers for Adafruit Industries
#
# SPDX-License-Identifier: Unlicense

repos:
- repo: https://github.com/python/black
rev: 23.3.0
hooks:
- id: black
- repo: https://github.com/fsfe/reuse-tool
rev: v1.1.2
hooks:
- id: reuse
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/pycqa/pylint
rev: v2.17.4
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.3.4
hooks:
- id: pylint
name: pylint (library code)
types: [python]
args:
- --disable=consider-using-f-string
exclude: "^(docs/|examples/|tests/|setup.py$)"
- id: pylint
name: pylint (example code)
description: Run pylint rules on "examples/*.py" files
types: [python]
files: "^examples/"
args:
- --disable=missing-docstring,invalid-name,consider-using-f-string,duplicate-code
- id: pylint
name: pylint (test code)
description: Run pylint rules on "tests/*.py" files
types: [python]
files: "^tests/"
args:
- --disable=missing-docstring,consider-using-f-string,duplicate-code
- id: ruff-format
- id: ruff
args: ["--fix"]
- repo: https://github.com/fsfe/reuse-tool
rev: v3.0.1
hooks:
- id: reuse
Loading