Skip to content

Commit c0a5d83

Browse files
committed
Patch release 4.0.2
- creates Python 3 wheel packages
1 parent 4e566e3 commit c0a5d83

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGES.md

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

4-
## Version 4.1.0 (as yet unreleased)
4+
## [Version 4.0.2](https://pypi.python.org/pypi/pyfakefs/4.0.2)
5+
6+
This as a patch release that only builds for Python 3. Note that
7+
versions 4.0.0 and 4.0.1 will be removed from PyPi to not to be able to
8+
install them under Python 2.
9+
10+
#### Fixes
11+
* Do not build for Python 2 (see [#524](../../issues/524))
12+
13+
## [Version 4.0.1](https://pypi.python.org/pypi/pyfakefs/4.0.1)
14+
15+
This as a bug fix release for a regression bug.
516

617
#### Fixes
718
* Avoid exception if using `flask-restx` (see [#523](../../issues/523))

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.1'
69+
version = '4.0.2'
7070
# The full version, including alpha/beta/rc tags.
71-
release = '4.1dev'
71+
release = '4.0.2'
7272

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

pyfakefs/fake_filesystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116

117117
__pychecker__ = 'no-reimportself'
118118

119-
__version__ = '4.1dev'
119+
__version__ = '4.0.2'
120120

121121
PERM_READ = 0o400 # Read permission bit.
122122
PERM_WRITE = 0o200 # Write permission bit.

0 commit comments

Comments
 (0)