We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06a28ad commit 34f63eaCopy full SHA for 34f63ea
backend.py
@@ -66,9 +66,13 @@ class SDist(Filter):
66
Should not ignore nested dist dirs
67
>>> sf(types.SimpleNamespace(name='./bar/dist'))
68
namespace(name='foo/bar/dist')
69
+
70
+ Should not ignore paths that begin with 'dist'
71
+ >>> sf(types.SimpleNamespace(name='./distributions'))
72
+ namespace(name='foo/distributions')
73
"""
74
- ignored = ['dist', r'(.*[/])?__pycache__$', r'(.*[/])?[.]']
75
+ ignored = ['dist$', r'(.*[/])?__pycache__$', r'(.*[/])?[.]']
76
77
78
class Wheel(Filter):
0 commit comments