Skip to content

Commit c6da252

Browse files
committed
remove sniffer from bootstrap_env
1 parent 1bcc6ca commit c6da252

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

bootstrap_env.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -124,24 +124,6 @@ def main():
124124
[pip_bin, 'install', '-e', project_dir]
125125
)
126126

127-
if not os.path.isfile(os.path.join(env_dir, 'bin', 'sniffer')):
128-
subprocess.check_call(
129-
[pip_bin, 'install', 'sniffer']
130-
)
131-
132-
if platform.system() == 'Linux':
133-
subprocess.check_call(
134-
[pip_bin, 'install', 'pyinotify']
135-
)
136-
elif platform.system() == 'Darwin':
137-
subprocess.check_call(
138-
[pip_bin, 'install', 'MacFSEvents']
139-
)
140-
elif platform.system() == 'Windows':
141-
subprocess.check_call(
142-
[pip_bin, 'install', 'pywin32']
143-
)
144-
145127
if not os.path.isfile(os.path.join(env_dir, 'bin', 'sphinx-quickstart')):
146128
subprocess.check_call(
147129
[pip_bin, 'install', '-r', sphinx_requirements_filepath]

0 commit comments

Comments
 (0)