Skip to content

Commit

Permalink
pip_install: constrain_package_deps is now False by default (#2899)
Browse files Browse the repository at this point in the history
  • Loading branch information
masenf authored Jan 25, 2023
1 parent e29217a commit 8155760
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/changelog/2897.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
In tox 4.4.0 ``constrain_package_deps`` was introduced with a default value of ``True``. This has been changed back to
``False``, which restores the original behavior of tox 4.3.5 - by :user:`masenf`.
2 changes: 1 addition & 1 deletion src/tox/tox_env/python/pip/pip_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def _register_config(self) -> None:
self._env.conf.add_config(
keys=["constrain_package_deps"],
of_type=bool,
default=True,
default=False,
desc="If true, apply constraints during install_package_deps.",
)
self._env.conf.add_config(
Expand Down

0 comments on commit 8155760

Please sign in to comment.