From e579f1dbffa3251928349e467bc9566d4ae67055 Mon Sep 17 00:00:00 2001 From: mrbean-bremen Date: Fri, 19 Jan 2024 16:54:51 +0100 Subject: [PATCH] Release 5.3.4 - correct incomplete fix in previous release --- CHANGES.md | 2 +- docs/conf.py | 4 ++-- pyfakefs/_version.py | 2 +- pyfakefs/fake_filesystem_unittest.py | 2 ++ 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index a08145ac..2b44a075 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,7 @@ # pyfakefs Release Notes The released versions correspond to PyPI releases. -## [Version 5.3.3](https://pypi.python.org/pypi/pyfakefs/5.3.3) (2024-01-19) +## [Version 5.3.4](https://pypi.python.org/pypi/pyfakefs/5.3.4) (2024-01-19) Bugfix release. ### Fixes diff --git a/docs/conf.py b/docs/conf.py index e5bbaaab..7d3c42f2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = "5.3.3" +version = "5.3.4" # The full version, including alpha/beta/rc tags. -release = "5.3.3" +release = "5.3.4" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyfakefs/_version.py b/pyfakefs/_version.py index d2f4a6f4..4db55089 100644 --- a/pyfakefs/_version.py +++ b/pyfakefs/_version.py @@ -1 +1 @@ -__version__ = "5.3.3" +__version__ = "5.3.4" diff --git a/pyfakefs/fake_filesystem_unittest.py b/pyfakefs/fake_filesystem_unittest.py index f43e14b1..16e52d6c 100644 --- a/pyfakefs/fake_filesystem_unittest.py +++ b/pyfakefs/fake_filesystem_unittest.py @@ -269,6 +269,7 @@ def setUpPyfakefs( patch_open_code: PatchMode = PatchMode.OFF, patch_default_args: bool = False, use_cache: bool = True, + use_dynamic_patch: bool = True, ) -> None: """Bind the file-related modules to the :py:class:`pyfakefs` fake file system instead of the real file system. Also bind the fake `open()` @@ -300,6 +301,7 @@ def setUpPyfakefs( patch_open_code=patch_open_code, patch_default_args=patch_default_args, use_cache=use_cache, + use_dynamic_patch=use_dynamic_patch, ) self._patcher.setUp()