Skip to content

Commit 370bad1

Browse files
committed
Release 4.5.6
- fixes compatibility with pytest < 3.9
1 parent 9e8fbfd commit 370bad1

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGES.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
# pyfakefs Release Notes
22
The released versions correspond to PyPi releases.
33

4-
## Unreleased
4+
## [Version 4.5.6](https://pypi.python.org/pypi/pyfakefs/4.5.6) (2022-03-17)
5+
Fixes a regression which broke tests with older pytest versions (< 3.9).
6+
7+
### Changes
8+
* minimum supported pytest version is now 3.0 (older versions do not work
9+
properly with current Python versions)
510

611
### Fixes
712
* only skip `_pytest.pathlib` in pytest versions where it is actually present
813
(see [#669](../../issues/669))
914

1015
### Infrastructure
11-
* add tests with different pytest versions
16+
* add tests with different pytest versions, starting with 3.0
1217

1318
## [Version 4.5.5](https://pypi.python.org/pypi/pyfakefs/4.5.5) (2022-02-14)
1419
Bugfix release, needed for compatibility with pytest 7.0.

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@
6666
# built documents.
6767
#
6868
# The short X.Y version.
69-
version = '4.6'
69+
version = '4.5.6'
7070
# The full version, including alpha/beta/rc tags.
71-
release = '4.6.dev0'
71+
release = '4.5.6'
7272

7373
# The language for content autogenerated by Sphinx. Refer to documentation
7474
# 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__ = '4.6.dev0'
1+
__version__ = '4.5.6'

0 commit comments

Comments
 (0)