Skip to content

Commit

Permalink
fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
labuzm committed Aug 8, 2020
1 parent 84c8587 commit d557e86
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import re
import setuptools

import versioneer
Expand All @@ -14,9 +15,10 @@


def _filter_cmake_manifest(cmake_manifest):
pattern = r'^_skbuild/.+(/src/kaa/.+)|(/bin/shaderc)$'
return [
path for path in cmake_manifest
if path.endswith('/bin/shaderc')
if re.match(pattern, path)
]

setup(
Expand Down

0 comments on commit d557e86

Please sign in to comment.