Skip to content
This repository has been archived by the owner on Feb 17, 2019. It is now read-only.

Commit

Permalink
prepare release to deprecate the tool.
Browse files Browse the repository at this point in the history
* require tox < 3.7
* add a note in the README about its status
* add a warning at the end of the testrun to consider switching
  • Loading branch information
obestwalter committed Jan 11, 2019
1 parent 4a1b93a commit d7ddd2a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
# CHANGELOG

## 0.19

- as tox added a parallel mode in 3.7 detox will only work with older versions of tox now so the installation requires a version of tox < 3.7
- mark repository as unmaintained
- add a warning at the end of the testrun hinting the user to try it without detox and a version of tox > 3.6

## 0.18

Note that usedevlop still does not seem to be fixed (PRs welcome)
Note that usedevelop still does not seem to be fixed (PRs welcome)

- integrate usable fixes from stale PR7
- (fix [#20](https://github.com/tox-dev/detox/issues/20) detox
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
[![Project Status: Unsupported – The project has reached a stable, usable state but the author(s) have ceased all work on it. A new maintainer may be desired.](https://www.repostatus.org/badges/latest/unsupported.svg)](https://www.repostatus.org/#unsupported)

# detox is unmaintained and incompatible with tox > 3.6

`detox` was a plugin for [`tox`](https://pypi.org/project/tox/) to enable parallel environment execution. `tox` 3.7 added a native possibility to do this (`tox -p|--parallel`) and effectively supercedes detox.

---

[![Build Status](https://travis-ci.org/tox-dev/detox.svg?branch=master)](https://travis-ci.org/tox-dev/detox)
[![Latest Version on PyPI](https://badge.fury.io/py/detox.svg)](https://badge.fury.io/py/detox)
[![Supported Python Versions](https://img.shields.io/pypi/pyversions/detox.svg)](https://pypi.org/project/detox/)
Expand Down
2 changes: 1 addition & 1 deletion detox/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.18"
__version__ = "0.19"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def make_long_description():
description="distributing activities of the tox tool",
long_description=make_long_description(),
long_description_content_type="text/markdown",
version="0.18", # Note: keep in sync with detox/__init__.py
version="0.19", # Note: keep in sync with detox/__init__.py
url="https://github.com/tox-dev/detox",
license="MIT",
platforms=["unix", "linux", "osx", "cygwin", "win32"],
Expand All @@ -40,7 +40,7 @@ def make_long_description():
"Programming Language :: Python",
],
packages=["detox"],
install_requires=["tox>=3.5,<4", "py>=1.4.27", "eventlet>=0.15.0"],
install_requires=["tox>=3.5,<3.7", "py>=1.4.27", "eventlet>=0.15.0"],
extras_require={"lint": ["black", "flake8"], "dev": ["pytest >= 3.8"]},
entry_points={
"console_scripts": "detox=detox.cli:main",
Expand Down

0 comments on commit d7ddd2a

Please sign in to comment.