Skip to content

Commit e579f1d

Browse files
committed
Release 5.3.4
- correct incomplete fix in previous release
1 parent 2cbc3a8 commit e579f1d

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# pyfakefs Release Notes
22
The released versions correspond to PyPI releases.
33

4-
## [Version 5.3.3](https://pypi.python.org/pypi/pyfakefs/5.3.3) (2024-01-19)
4+
## [Version 5.3.4](https://pypi.python.org/pypi/pyfakefs/5.3.4) (2024-01-19)
55
Bugfix release.
66

77
### Fixes

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = "5.3.3"
67+
version = "5.3.4"
6868
# The full version, including alpha/beta/rc tags.
69-
release = "5.3.3"
69+
release = "5.3.4"
7070

7171
# The language for content autogenerated by Sphinx. Refer to documentation
7272
# for a list of supported languages.

pyfakefs/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.3.3"
1+
__version__ = "5.3.4"

pyfakefs/fake_filesystem_unittest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,7 @@ def setUpPyfakefs(
269269
patch_open_code: PatchMode = PatchMode.OFF,
270270
patch_default_args: bool = False,
271271
use_cache: bool = True,
272+
use_dynamic_patch: bool = True,
272273
) -> None:
273274
"""Bind the file-related modules to the :py:class:`pyfakefs` fake file
274275
system instead of the real file system. Also bind the fake `open()`
@@ -300,6 +301,7 @@ def setUpPyfakefs(
300301
patch_open_code=patch_open_code,
301302
patch_default_args=patch_default_args,
302303
use_cache=use_cache,
304+
use_dynamic_patch=use_dynamic_patch,
303305
)
304306

305307
self._patcher.setUp()

0 commit comments

Comments
 (0)