Skip to content

Commit 4eaad6d

Browse files
authored
Merge pull request #2703 from gaborbernat/release-4.0.9
2 parents f4c0c19 + ebe1f39 commit 4eaad6d

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

docs/changelog.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ Release History
44

55
.. towncrier release notes start
66
7+
v4.0.9 (2022-12-13)
8+
-------------------
9+
10+
Features - 4.0.9
11+
~~~~~~~~~~~~~~~~
12+
- Add :meth:`tox_on_install <tox.plugin.spec.tox_on_install>` and
13+
:meth:`tox_env_teardown <tox.plugin.spec.tox_env_teardown>` plugin hooks - by :user:`gaborbernat`. (:issue:`2687`)
14+
- Add ``PKG_CONFIG_PATH`` to the default pass through environment list for python tox environments -
15+
by :user:`gaborbernat`. (:issue:`2700`)
16+
17+
718
v4.0.8 (2022-12-11)
819
-------------------
920

docs/changelog/2687.feature.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

docs/changelog/2700.feature.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

tests/session/cmd/test_show_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,12 @@ def test_pass_env_config_default(tox_project: ToxProjectCreator, stdout_is_atty:
101101
(["COMSPEC"] if is_win else [])
102102
+ ["CURL_CA_BUNDLE", "LANG", "LANGUAGE", "LD_LIBRARY_PATH"]
103103
+ (["MSYSTEM", "NUMBER_OF_PROCESSORS", "PATHEXT"] if is_win else [])
104-
+ ["PIP_*"]
104+
+ ["PIP_*", "PKG_CONFIG_PATH"]
105105
+ (["PROCESSOR_ARCHITECTURE"] if is_win else [])
106106
+ (["PROGRAMDATA"] if is_win else [])
107107
+ (["PROGRAMFILES"] if is_win else [])
108108
+ (["PROGRAMFILES(x86)"] if is_win else [])
109-
+ ["PKG_CONFIG_PATH", "REQUESTS_CA_BUNDLE", "SSL_CERT_FILE"]
109+
+ ["REQUESTS_CA_BUNDLE", "SSL_CERT_FILE"]
110110
+ (["SYSTEMDRIVE", "SYSTEMROOT", "TEMP"] if is_win else [])
111111
+ (["TERM"] if stdout_is_atty else [])
112112
+ (["TMP", "USERPROFILE"] if is_win else ["TMPDIR"])

0 commit comments

Comments
 (0)