Skip to content

Commit 81d416e

Browse files
committed
Added Python 3.8 to setup.py and README
- added note about ending Python 2.7/3.4 support in the documentation
1 parent 4c65784 commit 81d416e

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,12 @@ For example, pyfakefs will not work with [`lxml`](http://lxml.de/). In this cas
5858

5959
pyfakefs is currently automatically tested:
6060
* [![Build Status](https://travis-ci.org/jmcgeheeiv/pyfakefs.svg)](https://travis-ci.org/jmcgeheeiv/pyfakefs)
61-
on Linux, with Python 2.7, and 3.4 to 3.7, using [Travis](https://travis-ci.org/jmcgeheeiv/pyfakefs)
61+
on Linux, with Python 2.7, and 3.4 to 3.8, using [Travis](https://travis-ci.org/jmcgeheeiv/pyfakefs)
6262
* [![Build Status](https://travis-ci.org/jmcgeheeiv/pyfakefs.svg)](https://travis-ci.org/jmcgeheeiv/pyfakefs)
63-
on MacOS, with Python 2.7, 3.6 and 3.7, using [Travis](https://travis-ci.org/jmcgeheeiv/pyfakefs)
63+
on MacOS, with Python 2.7, 3.6 to 3.8, using [Travis](https://travis-ci.org/jmcgeheeiv/pyfakefs)
6464
* [![Build status](https://ci.appveyor.com/api/projects/status/4o8j21ufuo056873/branch/master?svg=true)](https://ci.appveyor.com/project/jmcgeheeiv/pyfakefs/branch/master)
65-
on Windows, with Python 2.7, and 3.4 to 3.7 using [Appveyor](https://ci.appveyor.com/project/jmcgeheeiv/pyfakefs)
65+
on Windows, with Python 2.7, and 3.4 to 3.8 using [Appveyor](https://ci
66+
.appveyor.com/project/jmcgeheeiv/pyfakefs)
6667

6768
### Running pyfakefs unit tests
6869

docs/intro.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ Using pyfakefs, your tests operate on a fake file system in memory without touch
66
The software under test requires no modification to work with pyfakefs.
77

88
pyfakefs works with CPython 2.7, 3.4 and above, on Linux, Windows and OSX
9-
(MacOS), and with PyPy2 and PyPy3.
9+
(MacOS), and with PyPy2 and PyPy3. Note that this is the last major release
10+
that still supports Python 2.7/PyPy2 and Python 3.4.
1011

1112
pyfakefs works with `PyTest <doc.pytest.org>`__ version 2.8.6 or above.
1213

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
'Programming Language :: Python :: 3.5',
4444
'Programming Language :: Python :: 3.6',
4545
'Programming Language :: Python :: 3.7',
46+
'Programming Language :: Python :: 3.8',
4647
'Programming Language :: Python:: Implementation :: CPython',
4748
'Programming Language :: Python:: Implementation :: PyPy',
4849
'Operating System :: POSIX',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py27,py33,py34,py35,py36,py37,pypy
2+
envlist=py27,py34,py35,py36,py37,py38,pypy
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)