From f8fea2c5ca92f34f4f7f4f058aec6f37f4b61036 Mon Sep 17 00:00:00 2001 From: Alec Delaney Date: Thu, 10 Feb 2022 10:07:22 -0500 Subject: [PATCH 1/4] Consolidate Documentation sections of README --- README.rst | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 9cf4da1..58ace61 100644 --- a/README.rst +++ b/README.rst @@ -74,14 +74,11 @@ Documentation API documentation for this library can be found on `Read the Docs `_. +For information on building library documentation, please check out `this guide `_. + Contributing ============ Contributions are welcome! Please read our `Code of Conduct `_ before contributing to help this project stay welcoming. - -Documentation -============= - -For information on building library documentation, please check out `this guide `_. From 1663709affd9282fa437aed910a11579e1d37684 Mon Sep 17 00:00:00 2001 From: dherrada Date: Mon, 14 Feb 2022 15:35:02 -0500 Subject: [PATCH 2/4] Fixed readthedocs build Signed-off-by: dherrada --- .readthedocs.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index f8b2891..33c2a61 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -8,8 +8,12 @@ # Required version: 2 +build: + os: ubuntu-20.04 + tools: + python: "3" + python: - version: "3.x" install: - requirements: docs/requirements.txt - requirements: requirements.txt From 86c2f35812abdd7453ef3a5b3a224587a8456388 Mon Sep 17 00:00:00 2001 From: Kattni Rembor Date: Mon, 28 Mar 2022 15:52:04 -0400 Subject: [PATCH 3/4] Update Black to latest. Signed-off-by: Kattni Rembor --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1b9fadc..7467c1d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,7 +4,7 @@ repos: - repo: https://github.com/python/black - rev: 20.8b1 + rev: 22.3.0 hooks: - id: black - repo: https://github.com/fsfe/reuse-tool From 445b828124100001a2d633b835a05b94e32083d5 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Tue, 19 Apr 2022 13:17:00 -0400 Subject: [PATCH 4/4] deprecate --- README.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.rst b/README.rst index 58ace61..fabe38a 100644 --- a/README.rst +++ b/README.rst @@ -1,3 +1,14 @@ +DEPRECATED - This library has been copied and renamed +===================================================== +The new version of this library is https://github.com/adafruit/Adafruit_CircuitPython_Pixelbuf. +This old version has been archived and will not be maintained. The import name was ``adafruit_pypixelbuf``, and is now: + +.. code:: + + import adafruit_pixelbuf + +On many boards, there is a native implementation of ``adafruit_pixelbuf``, and this Python version is not needed. + Introduction ============