Skip to content

Commit 2a0b79e

Browse files
committed
Add changes for pytest-flakes 4.0.1
1 parent 4f8461a commit 2a0b79e

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

README.rst

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Consider you have this code::
3333

3434
Running it with pytest-flakes installed shows two issues::
3535

36-
$ py.test -q --flakes
36+
$ py.test -q --flakes
3737
F
3838
================================= FAILURES =================================
3939
______________________________ pyflakes-check ______________________________
@@ -68,10 +68,10 @@ Rerunning with the above example will now look better::
6868
1 failed in 0.00 seconds
6969

7070
But of course we still would want to delete the ``import os`` line to
71-
have a clean pass.
71+
have a clean pass.
7272

7373
If you have some files where you want to specifically ignore
74-
some errors or warnings you can start a flakes-ignore line with
74+
some errors or warnings you can start a flakes-ignore line with
7575
a glob-pattern and a space-separated list of codes::
7676

7777
# content of setup.cfg
@@ -80,7 +80,7 @@ a glob-pattern and a space-separated list of codes::
8080
*.py UnusedImport
8181
doc/conf.py ALL
8282

83-
83+
8484
Ignoring certain lines in files
8585
-------------------------------
8686

@@ -121,6 +121,21 @@ and Holger Krekel's pytest-pep8.
121121
Changes
122122
=======
123123

124+
4.0.1 - 2020-07-28
125+
------------------
126+
127+
- Maintenance of pytest-flakes has moved from fschulze to asmeurer. The repo
128+
for pytest-flakes is now at https://github.com/asmeurer/pytest-flakes/
129+
130+
- Fix test failures.
131+
[asmeurer]
132+
133+
- Fix deprecation warnings from pytest.
134+
[asmeurer]
135+
136+
- Fix invalid escape sequences.
137+
[akeeman]
138+
124139
4.0.0 - 2018-08-01
125140
------------------
126141

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
description='pytest plugin to check source code with pyflakes',
66
long_description=open("README.rst").read(),
77
license="MIT license",
8-
version='4.0.0',
8+
version='4.0.1',
99
author='Florian Schulze, Holger Krekel and Ronny Pfannschmidt',
1010
url='https://github.com/asmeurer/pytest-flakes',
1111
classifiers=[

0 commit comments

Comments
 (0)