Skip to content

Commit

Permalink
Release 5.3.4
Browse files Browse the repository at this point in the history
- correct incomplete fix in previous release
  • Loading branch information
mrbean-bremen committed Jan 19, 2024
1 parent 2cbc3a8 commit e579f1d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyfakefs/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.3.3"
__version__ = "5.3.4"
2 changes: 2 additions & 0 deletions pyfakefs/fake_filesystem_unittest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()`
Expand Down Expand Up @@ -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()
Expand Down

0 comments on commit e579f1d

Please sign in to comment.