diff --git a/CITATION.cff b/CITATION.cff index a2976cd..803a274 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -3,8 +3,8 @@ message: If you use this software, please cite it using these metadata. title: Pycodestyle abstract: A tool to check your Python code for code smells using pycodestyle. type: software -version: 0.1.0 -date-released: 2024-05-22 +version: 0.1.1 +date-released: 2024-06-24 repository-code: https://github.com/CICDToolbox/pycodestyle keywords: - "Wolf Software" diff --git a/pipeline.sh b/pipeline.sh index 823e9ed..058fc23 100755 --- a/pipeline.sh +++ b/pipeline.sh @@ -273,7 +273,7 @@ function install_prerequisites() fail "${CMD[*]}" "${errors}" true exit "${EXIT_VALUE}" fi - done < <(find . -name 'requirements.txt' -type f -not -path "./.git/*" | sed 's|^./||' | sort -Vf || true) + done < <(find . -name 'requirements*.txt' -type f -not -path "./.git/*" | sed 's|^./||' | sort -Vf || true) fi }