Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
src/setup.py: Do not run find_namespace_packages for 'setup.py dist_i…
Browse files Browse the repository at this point in the history
…nfo'
  • Loading branch information
mkoeppe committed Jul 22, 2022
1 parent ff8710e commit 7221a76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# ## Configuration
# ########################################################

if len(sys.argv) > 1 and (sys.argv[1] == "sdist" or sys.argv[1] == "egg_info"):
if len(sys.argv) > 1 and (sys.argv[1] in ["sdist", "egg_info", "dist_info"]):
sdist = True
else:
sdist = False
Expand Down

0 comments on commit 7221a76

Please sign in to comment.