Skip to content

Commit

Permalink
Release 23.2: Enable foreach(..., spinner=False)
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Nov 19, 2020
1 parent 3b8b6cc commit ea14d75
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -11,6 +11,32 @@ to `semantic versioning`_.
.. _Keep a Changelog: http://keepachangelog.com/
.. _semantic versioning: http://semver.org/

`Release 23.2`_ (2020-11-19)
----------------------------

**Enhancements:**

- Enable control of spinners with :func:`.foreach()` using the ``spinner``
keyword (previously this would result in :exc:`~exceptions.TypeError`
exceptions).

**Changes to Travis CI:**

- Stabilized the Python 3.5 job (testing requirements).

- Stabilized the PyPy (2.7) job (:pypi:`cryptography` incantations).

- Reordered the build matrix by descending runtime (to optimize total runtime).

- Allow PyPy job failures without failing the complete Travis CI build, because
failures in the PyPy job tend to be caused by PyPy incompatibilities.

In fact I've seen hundreds of PyPy job failures on Travis CI over the years
while developing my open source projects and less than 1% of these pertained
to actual PyPy incompatibilities in the code bases I develop...

.. _Release 23.2: https://github.com/xolox/python-executor/compare/23.1...23.2

`Release 23.1`_ (2020-05-14)
----------------------------

Expand Down
4 changes: 2 additions & 2 deletions executor/__init__.py
Expand Up @@ -3,7 +3,7 @@
# Programmer friendly subprocess wrapper.
#
# Author: Peter Odding <peter@peterodding.com>
# Last Change: May 14, 2020
# Last Change: November 19, 2020
# URL: https://executor.readthedocs.io

"""
Expand Down Expand Up @@ -68,7 +68,7 @@
from executor.process import ControllableProcess

# Semi-standard module versioning.
__version__ = '23.1'
__version__ = '23.2'

# Initialize a logger.
logger = logging.getLogger(__name__)
Expand Down

0 comments on commit ea14d75

Please sign in to comment.