From 68fd0fab4c2a4b08cab82664bb8680e77c52c183 Mon Sep 17 00:00:00 2001 From: David Michaels Date: Wed, 3 Jan 2024 12:23:33 -0500 Subject: [PATCH] Support for gitinfo.json --- dcicutils/scripts/publish_to_pypi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dcicutils/scripts/publish_to_pypi.py b/dcicutils/scripts/publish_to_pypi.py index 0567369af..e269348be 100644 --- a/dcicutils/scripts/publish_to_pypi.py +++ b/dcicutils/scripts/publish_to_pypi.py @@ -243,7 +243,7 @@ def get_untracked_files() -> list: # Ignore any __pycache__ directories as they are already ignored by poetry publish. if os.path.isdir(untracked_file) and os.path.basename(untracked_file.rstrip("/")) == "__pycache__": continue - # Ignore gitinfo.json which may exist if the repo wants to create this via GitHub Actions. + # Ignore gitinfo.json which may exist if the repo wants to create this via GitHub Actions. if os.path.basename(untracked_file) == "gitinfo.json": continue untracked_files.append(untracked_file)