Compare commits

..

No commits in common. "master" and "pylint-update" have entirely different histories.

4 changed files with 14 additions and 17 deletions

View file

@ -43,9 +43,6 @@ jobs:
pip install --force-reinstall pylint black==19.10b0 Sphinx sphinx-rtd-theme pip install --force-reinstall pylint black==19.10b0 Sphinx sphinx-rtd-theme
- name: Library version - name: Library version
run: git describe --dirty --always --tags run: git describe --dirty --always --tags
- name: Check formatting
run: |
black --check --target-version=py35 .
- name: PyLint - name: PyLint
run: | run: |
pylint $( find . -path './adafruit*.py' ) pylint $( find . -path './adafruit*.py' )

View file

@ -74,10 +74,10 @@ You may report in the following ways:
In any situation, you may send an email to <support@adafruit.com>. In any situation, you may send an email to <support@adafruit.com>.
On the Adafruit Discord, you may send an open message from any channel On the Adafruit Discord, you may send an open message from any channel
to all Community Moderators by tagging @community moderators. You may to all Community Helpers by tagging @community helpers. You may also send an
also send an open message from any channel, or a direct message to open message from any channel, or a direct message to @kattni#1507,
@kattni#1507, @tannewt#4653, @Dan Halbert#1614, @cater#2442, @tannewt#4653, @Dan Halbert#1614, @cater#2442, @sommersoft#0222,
@sommersoft#0222, @Mr. Certainly#0472 or @Andon#8175. @Mr. Certainly#0472 or @Andon#8175.
Email and direct message reports will be kept confidential. Email and direct message reports will be kept confidential.

View file

@ -6,7 +6,7 @@ Introduction
:alt: Documentation Status :alt: Documentation Status
.. image :: https://img.shields.io/discord/327254708534116352.svg .. image :: https://img.shields.io/discord/327254708534116352.svg
:target: https://adafru.it/discord :target: https://discord.gg/nBQh6qu
:alt: Discord :alt: Discord
.. image:: https://github.com/adafruit/Adafruit_CircuitPython_DS3231/workflows/Build%20CI/badge.svg .. image:: https://github.com/adafruit/Adafruit_CircuitPython_DS3231/workflows/Build%20CI/badge.svg

View file

@ -72,18 +72,18 @@ source_suffix = [".rst", ".md"]
master_doc = "index" master_doc = "index"
# General information about the project. # General information about the project.
project = "Adafruit's DS3231 RTC Library" project = u"Adafruit's DS3231 RTC Library"
copyright = "2016, Philip Moyer" copyright = u"2016, Philip Moyer"
author = "Philip Moyer" author = u"Philip Moyer"
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = "1.0" version = u"1.0"
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = "1.0" release = u"1.0"
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
@ -304,8 +304,8 @@ latex_documents = [
( (
master_doc, master_doc,
"AdafruitsDS3231RTCLibrary.tex", "AdafruitsDS3231RTCLibrary.tex",
"Adafruit's DS3231 RTC Library Documentation", u"Adafruit's DS3231 RTC Library Documentation",
"Philip Moyer", u"Philip Moyer",
"manual", "manual",
), ),
] ]
@ -351,7 +351,7 @@ man_pages = [
( (
master_doc, master_doc,
"adafruitsds3231rtclibrary", "adafruitsds3231rtclibrary",
"Adafruit's DS3231 RTC Library Documentation", u"Adafruit's DS3231 RTC Library Documentation",
[author], [author],
1, 1,
) )
@ -371,7 +371,7 @@ texinfo_documents = [
( (
master_doc, master_doc,
"AdafruitsDS3231RTCLibrary", "AdafruitsDS3231RTCLibrary",
"Adafruit's DS3231 RTC Library Documentation", u"Adafruit's DS3231 RTC Library Documentation",
author, author,
"AdafruitsDS3231RTCLibrary", "AdafruitsDS3231RTCLibrary",
"One line description of project.", "One line description of project.",