Skip to content

Commit 9e2d9b7

Browse files
authored
Merge pull request #1144 from Parallel-in-Time/copilot/fix-pull-request-job-failure
Pin `bibtexparser` to v1 in automation workflows to restore `pull_request` job
2 parents 12cf2dc + 1ae3bd0 commit 9e2d9b7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/arxiv_to_publications_correct.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
cd bin
1616
python3 -m pip install --user --upgrade pip
1717
python3 -m pip install --user setuptools
18-
python3 -m pip install --user requests bibtexparser
18+
python3 -m pip install --user requests "bibtexparser<2"
1919
python3 arxiv_to_publications_correct.py -b "$ISSUE_BODY" > comment.out 2>&1
2020
{
2121
echo 'COMMENT<<GITHUB_OUTPUT_DELIMITER'

.github/workflows/arxiv_to_publications_detect.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
cd bin
1515
python3 -m pip install --user --upgrade pip
1616
python3 -m pip install --user setuptools
17-
python3 -m pip install --user python-Levenshtein bibtexparser
17+
python3 -m pip install --user python-Levenshtein "bibtexparser<2"
1818
python3 arxiv_to_publications_detect.py > issue.md 2>&1
1919
{
2020
echo 'ISSUE<<GITHUB_OUTPUT_DELIMITER'

.github/workflows/issue_to_bib.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
cd bin
1414
python3 -m pip install --user --upgrade pip
1515
python3 -m pip install --user setuptools
16-
python3 -m pip install --user bibtexparser arxivcheck
16+
python3 -m pip install --user "bibtexparser<2" arxivcheck
1717
python3 issue_to_bibtex.py -b "${{ github.event.issue.body }}" > comment.out 2>&1
1818
{
1919
echo 'COMMENT<<GITHUB_OUTPUT_DELIMITER'

0 commit comments

Comments
 (0)