File tree 5 files changed +17
-11
lines changed
5 files changed +17
-11
lines changed Original file line number Diff line number Diff line change @@ -128,8 +128,8 @@ Python 2 support
128
128
129
129
.. warning ::
130
130
131
- Version 1.6.0 of GPIO Zero is the last to support Python 2. The next release
132
- will be Version 2.0.0 and will support Python 3 only.
131
+ GPIO Zero 1.6.x is the last to support Python 2. GPIO Zero 2.x will support
132
+ Python 3 only.
133
133
134
134
Contributors
135
135
============
Original file line number Diff line number Diff line change @@ -134,6 +134,8 @@ they are tried by default.
134
134
+=========+===============================================+===========================================+
135
135
| rpigpio | :class: `gpiozero.pins.rpigpio.RPiGPIOFactory ` | :class: `gpiozero.pins.rpigpio.RPiGPIOPin ` |
136
136
+---------+-----------------------------------------------+-------------------------------------------+
137
+ | lgpio | :class: `gpiozero.pins.lgpio.LGPIOFactory ` | :class: `gpiozero.pins.lgpio.LGPIOPin ` |
138
+ +---------+-----------------------------------------------+-------------------------------------------+
137
139
| rpio | :class: `gpiozero.pins.rpio.RPIOFactory ` | :class: `gpiozero.pins.rpio.RPIOPin ` |
138
140
+---------+-----------------------------------------------+-------------------------------------------+
139
141
| pigpio | :class: `gpiozero.pins.pigpio.PiGPIOFactory ` | :class: `gpiozero.pins.pigpio.PiGPIOPin ` |
Original file line number Diff line number Diff line change @@ -12,12 +12,20 @@ Changelog
12
12
13
13
.. currentmodule :: gpiozero
14
14
15
+ Release 1.6.2 (2021-03-18)
16
+ ==========================
17
+
18
+ * Correct docs referring to 1.6.0 as the last version supporting Python 2
19
+
20
+ .. warning ::
21
+
22
+ This is the last release to support Python 2
23
+
15
24
Release 1.6.1 (2021-03-17)
16
25
==========================
17
26
18
27
* Fix missing font files for 7-segment displays
19
28
20
-
21
29
Release 1.6.0 (2021-03-14)
22
30
==========================
23
31
@@ -54,10 +62,6 @@ Release 1.6.0 (2021-03-14)
54
62
* Added USB3 and Ethernet speed attributes to :func: `pi_info `
55
63
* Various docs updates
56
64
57
- .. warning ::
58
-
59
- This is the last release to support Python 2
60
-
61
65
.. _lgpio : http://abyz.me.uk/lg/py_lgpio.html
62
66
.. _#482 : https://github.com/gpiozero/gpiozero/issues/482
63
67
.. _#928 : https://github.com/gpiozero/gpiozero/issues/928
Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ Python 2/3
69
69
==========
70
70
71
71
The library is 100% compatible with both Python 2.7 and Python 3 from version
72
- 3.2 onwards. Since Python 2 is now past its `end-of-life `_, the 1.6.0 release
73
- (2021-03-14 ) is the last to support Python 2.
72
+ 3.2 onwards. Since Python 2 is now past its `end-of-life `_, the 1.6.2 release
73
+ (2021-03-18 ) is the last to support Python 2.
74
74
75
75
76
76
.. _docs : https://github.com/gpiozero/gpiozero/tree/master/docs
Original file line number Diff line number Diff line change @@ -213,9 +213,9 @@ version of gpiozero is available in your Python environment like so:
213
213
214
214
>>> from pkg_resources import require
215
215
>>> require('gpiozero')
216
- [gpiozero 1.6.0 (/usr/lib/python3/dist-packages)]
216
+ [gpiozero 1.6.2 (/usr/lib/python3/dist-packages)]
217
217
>>> require('gpiozero')[0].version
218
- '1.6.0 '
218
+ '1.6.2 '
219
219
220
220
If you have multiple versions installed (e.g. from :command: `pip ` and
221
221
:command: `apt `) they will not show up in the list returned by the
You can’t perform that action at this time.
0 commit comments