diff --git a/setup.py b/setup.py index b5acb29..ed95a06 100644 --- a/setup.py +++ b/setup.py @@ -14,12 +14,12 @@ setup( author_email="miro@hroncok.cz", url="https://github.com/fedora-python/tox-current-env", license="MIT", - version="0.0.6", + version="0.0.7", package_dir={"": "src"}, packages=find_packages("src"), entry_points={"tox": ["current-env = tox_current_env.hooks"]}, install_requires=[ - "tox>=3.15", + "tox>=3.15,<4", "importlib_metadata; python_version < '3.8'" ], python_requires=">=3.6", diff --git a/tox.ini b/tox.ini index 6c4a906..2d9e7c2 100644 --- a/tox.ini +++ b/tox.ini @@ -10,7 +10,7 @@ deps= pytest-xdist packaging tox315: tox >=3.15,<3.16 - toxrelease: tox + toxrelease: tox < 4 toxmaster: git+https://github.com/tox-dev/tox.git@master commands = pytest -v {posargs} tests