Skip to content

Commit

Permalink
release 4.0.9
Browse files Browse the repository at this point in the history
Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
  • Loading branch information
gaborbernat committed Dec 13, 2022
1 parent f4c0c19 commit ebe1f39
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
11 changes: 11 additions & 0 deletions docs/changelog.rst
Expand Up @@ -4,6 +4,17 @@ Release History

.. towncrier release notes start
v4.0.9 (2022-12-13)
-------------------

Features - 4.0.9
~~~~~~~~~~~~~~~~
- Add :meth:`tox_on_install <tox.plugin.spec.tox_on_install>` and
:meth:`tox_env_teardown <tox.plugin.spec.tox_env_teardown>` plugin hooks - by :user:`gaborbernat`. (:issue:`2687`)
- Add ``PKG_CONFIG_PATH`` to the default pass through environment list for python tox environments -
by :user:`gaborbernat`. (:issue:`2700`)


v4.0.8 (2022-12-11)
-------------------

Expand Down
2 changes: 0 additions & 2 deletions docs/changelog/2687.feature.rst

This file was deleted.

2 changes: 0 additions & 2 deletions docs/changelog/2700.feature.rst

This file was deleted.

4 changes: 2 additions & 2 deletions tests/session/cmd/test_show_config.py
Expand Up @@ -101,12 +101,12 @@ def test_pass_env_config_default(tox_project: ToxProjectCreator, stdout_is_atty:
(["COMSPEC"] if is_win else [])
+ ["CURL_CA_BUNDLE", "LANG", "LANGUAGE", "LD_LIBRARY_PATH"]
+ (["MSYSTEM", "NUMBER_OF_PROCESSORS", "PATHEXT"] if is_win else [])
+ ["PIP_*"]
+ ["PIP_*", "PKG_CONFIG_PATH"]
+ (["PROCESSOR_ARCHITECTURE"] if is_win else [])
+ (["PROGRAMDATA"] if is_win else [])
+ (["PROGRAMFILES"] if is_win else [])
+ (["PROGRAMFILES(x86)"] if is_win else [])
+ ["PKG_CONFIG_PATH", "REQUESTS_CA_BUNDLE", "SSL_CERT_FILE"]
+ ["REQUESTS_CA_BUNDLE", "SSL_CERT_FILE"]
+ (["SYSTEMDRIVE", "SYSTEMROOT", "TEMP"] if is_win else [])
+ (["TERM"] if stdout_is_atty else [])
+ (["TMP", "USERPROFILE"] if is_win else ["TMPDIR"])
Expand Down

0 comments on commit ebe1f39

Please sign in to comment.