Skip to content

Commit c6b176e

Browse files
Remove auto udev rules
1 parent 214ff68 commit c6b176e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ script:
2121
- git describe --tags >VERSION
2222
- cp -r ../lib .
2323
- cp -r ../third_party .
24-
- cp ../test/atca_utils_sizes.c
24+
- cp ../test/atca_utils_sizes.c .
2525
- $PIP install wheel
2626
- $PYTHON setup.py sdist --dist-dir wheelhouse
2727
- $PIP install cibuildwheel

python/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def copy_udev_rules(target):
7171
if not os.path.exists(target + os.path.sep + os.path.basename(rules)):
7272
shutil.copy(rules, target)
7373

74-
74+
7575
def install_udev_rules():
7676
if sys.platform.startswith('linux'):
7777
try:
@@ -162,8 +162,8 @@ def has_ext_modules(self):
162162
# but only affects bdist_* invocations which only applies to macos and windows
163163
# and the extension is only required for linux
164164
_COMMANDS = { 'build_ext': CryptoAuthCommandBuildExt }
165-
if sys.platform.startswith('linux'):
166-
_COMMANDS['install'] = CryptoAuthCommandInstall
165+
#if sys.platform.startswith('linux'):
166+
# _COMMANDS['install'] = CryptoAuthCommandInstall
167167

168168
if __name__ == '__main__':
169169
setup(

0 commit comments

Comments
 (0)