Skip to content

Commit 8155760

Browse files
authored
pip_install: constrain_package_deps is now False by default (#2899)
1 parent e29217a commit 8155760

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/changelog/2897.bugfix.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
In tox 4.4.0 ``constrain_package_deps`` was introduced with a default value of ``True``. This has been changed back to
2+
``False``, which restores the original behavior of tox 4.3.5 - by :user:`masenf`.

src/tox/tox_env/python/pip/pip_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def _register_config(self) -> None:
4242
self._env.conf.add_config(
4343
keys=["constrain_package_deps"],
4444
of_type=bool,
45-
default=True,
45+
default=False,
4646
desc="If true, apply constraints during install_package_deps.",
4747
)
4848
self._env.conf.add_config(

0 commit comments

Comments
 (0)