Skip to content

Commit e1293aa

Browse files
committed
Skip plain_workspace.egg-info in to-release script
1 parent 567d864 commit e1293aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/to-release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def get_commits_since_version_change(repo_path, package_path):
5454
return []
5555

5656
def discover_packages(repo_path):
57-
return [d for d in os.listdir(repo_path) if os.path.isdir(d) and d.startswith('plain')]
57+
return [d for d in os.listdir(repo_path) if os.path.isdir(d) and d.startswith('plain') and not d.endswith(".egg-info")]
5858

5959
def main():
6060
repo_path = os.getcwd()

0 commit comments

Comments
 (0)