Skip to content

Commit 4ed0348

Browse files
committed
ignore temporary config files
1 parent 39fa503 commit 4ed0348

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,5 @@ target/
6363

6464
#PyCharm
6565
/.idea
66+
/contrib.enabled
67+
/cv_version.py

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def main():
4141
('_64' if x64 else '')] if os.name == 'nt' else []
4242
),
4343
# In Windows, in python/X.Y/<arch>/; in Linux, in just python/X.Y/. What gives?
44-
['python/([^/]+)/{1,2}cv2%(arch)s%(ext)s' % {
44+
['python/([^/]+/){1,2}cv2%(arch)s%(ext)s' % {
4545
'arch': (('\\.cp%d%d-[^.]+' % sys.version_info[:2])
4646
if sys.version_info[:2] >= (3, 5) else ''),
4747
'ext': re.escape(sysconfig.get_config_var('SO'))

0 commit comments

Comments
 (0)