Skip to content

Commit 30733ef

Browse files
committed
Updated docs link, updated python docs link, updated setup.py
1 parent 7b15f2f commit 30733ef

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Introduction
22
============
33

44
.. image:: https://readthedocs.org/projects/adafruit-circuitpython-ssd1306/badge/?version=latest
5-
:target: https://circuitpython.readthedocs.io/projects/ssd1306/en/latest/
5+
:target: https://docs.circuitpython.org/projects/ssd1306/en/latest/
66
:alt: Documentation Status
77

88
.. image:: https://img.shields.io/discord/327254708534116352.svg
@@ -15,7 +15,7 @@ Introduction
1515

1616
Adafruit CircuitPython driver for SSD1306 or SSD1305 OLED displays. Note that SSD1305 displays are back compatible so they can be used in-place of SSD1306 with the same code and commands.
1717

18-
This driver implements the `adafruit_framebuf interface <https://circuitpython.readthedocs.io/projects/framebuf/en/latest/>`__. It is **not** the `displayio` driver for the SSD1306. See the `Adafruit CircuitPython DisplayIO SSD1306 <https://github.com/adafruit/Adafruit_CircuitPython_DisplayIO_SSD1306/>`_ driver for `displayio` support.
18+
This driver implements the `adafruit_framebuf interface <https://docs.circuitpython.org/projects/framebuf/en/latest/>`__. It is **not** the `displayio` driver for the SSD1306. See the `Adafruit CircuitPython DisplayIO SSD1306 <https://github.com/adafruit/Adafruit_CircuitPython_DisplayIO_SSD1306/>`_ driver for `displayio` support.
1919

2020

2121
Dependencies
@@ -97,13 +97,13 @@ Usage Example
9797
display.pixel(127, 31, 1)
9898
display.show()
9999
100-
More examples and details can be found in the `adafruit_framebuf docs <https://circuitpython.readthedocs.io/projects/framebuf/en/latest>`__.
100+
More examples and details can be found in the `adafruit_framebuf docs <https://docs.circuitpython.org/projects/framebuf/en/latest>`__.
101101

102102

103103
Documentation
104104
=============
105105

106-
API documentation for this library can be found on `Read the Docs <https://circuitpython.readthedocs.io/projects/ssd1306/en/latest/>`_.
106+
API documentation for this library can be found on `Read the Docs <https://docs.circuitpython.org/projects/ssd1306/en/latest/>`_.
107107

108108
Contributing
109109
============

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
autodoc_mock_imports = ["framebuf"]
2828

2929
intersphinx_mapping = {
30-
"python": ("https://docs.python.org/3.4", None),
30+
"python": ("https://docs.python.org/3", None),
3131
"BusDevice": (
32-
"https://circuitpython.readthedocs.io/projects/busdevice/en/latest/",
32+
"https://docs.circuitpython.org/projects/busdevice/en/latest/",
3333
None,
3434
),
35-
"CircuitPython": ("https://circuitpython.readthedocs.io/en/latest/", None),
35+
"CircuitPython": ("https://docs.circuitpython.org/en/latest/", None),
3636
}
3737

3838
# Add any paths that contain templates here, relative to this directory.

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Table of Contents
3434
:caption: Other Links
3535

3636
Download <https://github.com/adafruit/adafruit_CircuitPython_SSD1306/releases/latest>
37-
CircuitPython Reference Documentation <https://circuitpython.readthedocs.io>
37+
CircuitPython Reference Documentation <https://docs.circuitpython.org>
3838
CircuitPython Support Forum <https://forums.adafruit.com/viewforum.php?f=60>
3939
Discord Chat <https://adafru.it/discord>
4040
Adafruit Learning System <https://learn.adafruit.com>

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@
4949
"Topic :: System :: Hardware",
5050
"License :: OSI Approved :: MIT License",
5151
"Programming Language :: Python :: 3",
52-
"Programming Language :: Python :: 3.4",
53-
"Programming Language :: Python :: 3.5",
5452
],
5553
# What does your project relate to?
5654
keywords="adafruit ssd1306 oled displays hardware micropython circuitpython",

0 commit comments

Comments
 (0)