Skip to content

Commit ea14d75

Browse files
committed
Release 23.2: Enable foreach(..., spinner=False)
1 parent 3b8b6cc commit ea14d75

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

Diff for: CHANGELOG.rst

+26
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,32 @@ to `semantic versioning`_.
1111
.. _Keep a Changelog: http://keepachangelog.com/
1212
.. _semantic versioning: http://semver.org/
1313

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+
1440
`Release 23.1`_ (2020-05-14)
1541
----------------------------
1642

Diff for: executor/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Programmer friendly subprocess wrapper.
44
#
55
# Author: Peter Odding <peter@peterodding.com>
6-
# Last Change: May 14, 2020
6+
# Last Change: November 19, 2020
77
# URL: https://executor.readthedocs.io
88

99
"""
@@ -68,7 +68,7 @@
6868
from executor.process import ControllableProcess
6969

7070
# Semi-standard module versioning.
71-
__version__ = '23.1'
71+
__version__ = '23.2'
7272

7373
# Initialize a logger.
7474
logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)