Skip to content

Commit ebb09d2

Browse files
rename command in setup.py
1 parent 70ccd5b commit ebb09d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ def new__compile(obj, src: str, ext, cc_args, extra_postargs, pp_opts):
181181
cmd_class = {"build_ext": MyBuildExt}
182182

183183

184-
class SmartEggInfoCommand(egg_info):
185-
"""Custom egg_info command that auto-adds AWS extra unless slim is specified."""
184+
class SetDefaultInstallationExtras(egg_info):
185+
"""Adds AWS extra unless SNOWFLAKE_NO_BOTO is specified."""
186186

187187
def finalize_options(self):
188188
super().finalize_options()
@@ -194,7 +194,7 @@ def finalize_options(self):
194194

195195

196196
# Update command classes
197-
cmd_class["egg_info"] = SmartEggInfoCommand
197+
cmd_class["egg_info"] = SetDefaultInstallationExtras
198198

199199
setup(
200200
version=version,

0 commit comments

Comments
 (0)