File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 8
8
9
9
import os
10
10
11
- __version__ = '1.5 '
11
+ __version__ = '1.6 '
12
12
13
13
# Prepare a lock file
14
14
from tempfile import gettempdir
@@ -51,6 +51,8 @@ def _ignore_file(path):
51
51
basename = os .path .basename (path )
52
52
if basename .startswith ('.#' ):
53
53
return True
54
+ if basename .startswith ('#' ) and basename .endswith ('#' ):
55
+ return True
54
56
if '.' in os .path .basename (path ) and \
55
57
basename .split ('.' )[- 1 ] in settings .IGNORE_EXTENSIONS :
56
58
return True
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ def read(fname):
7
7
return open (os .path .join (os .path .dirname (__file__ ), fname )).read ()
8
8
9
9
setup (name = 'python-gorun' ,
10
- version = '0.3 ' ,
10
+ version = '1.6 ' ,
11
11
description = 'Wrapper on pyinotify for running commands (often tests)' ,
12
12
long_description = read ('README.md' ),
13
13
author = 'Peter Bengtsson' ,
You can’t perform that action at this time.
0 commit comments