File tree 2 files changed +28
-2
lines changed
2 files changed +28
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,32 @@ to `semantic versioning`_.
11
11
.. _Keep a Changelog : http://keepachangelog.com/
12
12
.. _semantic versioning : http://semver.org/
13
13
14
+ `Release 23.2 `_ (2020-11-19)
15
+ ----------------------------
16
+
17
+ **Enhancements: **
18
+
19
+ - Enable control of spinners with :func: `.foreach() ` using the ``spinner ``
20
+ keyword (previously this would result in :exc: `~exceptions.TypeError `
21
+ exceptions).
22
+
23
+ **Changes to Travis CI: **
24
+
25
+ - Stabilized the Python 3.5 job (testing requirements).
26
+
27
+ - Stabilized the PyPy (2.7) job (:pypi: `cryptography ` incantations).
28
+
29
+ - Reordered the build matrix by descending runtime (to optimize total runtime).
30
+
31
+ - Allow PyPy job failures without failing the complete Travis CI build, because
32
+ failures in the PyPy job tend to be caused by PyPy incompatibilities.
33
+
34
+ In fact I've seen hundreds of PyPy job failures on Travis CI over the years
35
+ while developing my open source projects and less than 1% of these pertained
36
+ to actual PyPy incompatibilities in the code bases I develop...
37
+
38
+ .. _Release 23.2 : https://github.com/xolox/python-executor/compare/23.1...23.2
39
+
14
40
`Release 23.1 `_ (2020-05-14)
15
41
----------------------------
16
42
Original file line number Diff line number Diff line change 3
3
# Programmer friendly subprocess wrapper.
4
4
#
5
5
# Author: Peter Odding <peter@peterodding.com>
6
- # Last Change: May 14 , 2020
6
+ # Last Change: November 19 , 2020
7
7
# URL: https://executor.readthedocs.io
8
8
9
9
"""
68
68
from executor .process import ControllableProcess
69
69
70
70
# Semi-standard module versioning.
71
- __version__ = '23.1 '
71
+ __version__ = '23.2 '
72
72
73
73
# Initialize a logger.
74
74
logger = logging .getLogger (__name__ )
You can’t perform that action at this time.
0 commit comments