Compare commits
6 commits
pylint-upd
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
974d5e6656 | ||
|
|
0d49a1fcd9 | ||
|
|
0e32efa93d | ||
|
|
b08aa012dd | ||
|
|
e2d5a2f4cd | ||
|
|
ab1f24811b |
4 changed files with 17 additions and 14 deletions
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
|
|
@ -43,6 +43,9 @@ jobs:
|
|||
pip install --force-reinstall pylint black==19.10b0 Sphinx sphinx-rtd-theme
|
||||
- name: Library version
|
||||
run: git describe --dirty --always --tags
|
||||
- name: Check formatting
|
||||
run: |
|
||||
black --check --target-version=py35 .
|
||||
- name: PyLint
|
||||
run: |
|
||||
pylint $( find . -path './adafruit*.py' )
|
||||
|
|
|
|||
|
|
@ -74,10 +74,10 @@ You may report in the following ways:
|
|||
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
|
||||
to all Community Helpers by tagging @community helpers. You may also send an
|
||||
open message from any channel, or a direct message to @kattni#1507,
|
||||
@tannewt#4653, @Dan Halbert#1614, @cater#2442, @sommersoft#0222,
|
||||
@Mr. Certainly#0472 or @Andon#8175.
|
||||
to all Community Moderators by tagging @community moderators. You may
|
||||
also send an open message from any channel, or a direct message to
|
||||
@kattni#1507, @tannewt#4653, @Dan Halbert#1614, @cater#2442,
|
||||
@sommersoft#0222, @Mr. Certainly#0472 or @Andon#8175.
|
||||
|
||||
Email and direct message reports will be kept confidential.
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ Introduction
|
|||
:alt: Documentation Status
|
||||
|
||||
.. image :: https://img.shields.io/discord/327254708534116352.svg
|
||||
:target: https://discord.gg/nBQh6qu
|
||||
:target: https://adafru.it/discord
|
||||
:alt: Discord
|
||||
|
||||
.. image:: https://github.com/adafruit/Adafruit_CircuitPython_DS3231/workflows/Build%20CI/badge.svg
|
||||
|
|
|
|||
18
docs/conf.py
18
docs/conf.py
|
|
@ -72,18 +72,18 @@ source_suffix = [".rst", ".md"]
|
|||
master_doc = "index"
|
||||
|
||||
# General information about the project.
|
||||
project = u"Adafruit's DS3231 RTC Library"
|
||||
copyright = u"2016, Philip Moyer"
|
||||
author = u"Philip Moyer"
|
||||
project = "Adafruit's DS3231 RTC Library"
|
||||
copyright = "2016, Philip Moyer"
|
||||
author = "Philip Moyer"
|
||||
|
||||
# The version info for the project you're documenting, acts as replacement for
|
||||
# |version| and |release|, also used in various other places throughout the
|
||||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = u"1.0"
|
||||
version = "1.0"
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = u"1.0"
|
||||
release = "1.0"
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
@ -304,8 +304,8 @@ latex_documents = [
|
|||
(
|
||||
master_doc,
|
||||
"AdafruitsDS3231RTCLibrary.tex",
|
||||
u"Adafruit's DS3231 RTC Library Documentation",
|
||||
u"Philip Moyer",
|
||||
"Adafruit's DS3231 RTC Library Documentation",
|
||||
"Philip Moyer",
|
||||
"manual",
|
||||
),
|
||||
]
|
||||
|
|
@ -351,7 +351,7 @@ man_pages = [
|
|||
(
|
||||
master_doc,
|
||||
"adafruitsds3231rtclibrary",
|
||||
u"Adafruit's DS3231 RTC Library Documentation",
|
||||
"Adafruit's DS3231 RTC Library Documentation",
|
||||
[author],
|
||||
1,
|
||||
)
|
||||
|
|
@ -371,7 +371,7 @@ texinfo_documents = [
|
|||
(
|
||||
master_doc,
|
||||
"AdafruitsDS3231RTCLibrary",
|
||||
u"Adafruit's DS3231 RTC Library Documentation",
|
||||
"Adafruit's DS3231 RTC Library Documentation",
|
||||
author,
|
||||
"AdafruitsDS3231RTCLibrary",
|
||||
"One line description of project.",
|
||||
|
|
|
|||
Loading…
Reference in a new issue