Skip to content

Commit

Permalink
test: Restrict pypdf to v4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kesara committed Jun 17, 2024
1 parent a082ad0 commit b6dfcfe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
echo "Installing pip + wheel..."
python -m pip install --upgrade pip wheel
echo "Installing requirements.txt + test dependencies..."
python -m pip install -r requirements.txt tox tox-gh-actions certifi decorator dict2xml pyflakes "pypdf>=4.1.0" "weasyprint>=53.0,!=57.0,!=60.0"
python -m pip install -r requirements.txt tox tox-gh-actions certifi decorator dict2xml pyflakes "pypdf==4.1.0" "weasyprint>=53.0,!=57.0,!=60.0"
- name: Generate Valid Tests
run: |
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
echo "Installing pip + wheel..."
python -m pip install --upgrade pip wheel
echo "Installing requirements.txt + test dependencies..."
python -m pip install -r requirements.txt tox tox-gh-actions certifi decorator dict2xml pyflakes "pypdf>=4.1.0" "weasyprint>=53.0,!=57.0,!=60.0"
python -m pip install -r requirements.txt tox tox-gh-actions certifi decorator dict2xml pyflakes "pypdf==4.1.0" "weasyprint>=53.0,!=57.0,!=60.0"
- name: Generate Valid Tests
run: |
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
# echo "Installing pip + wheel..."
# python -m pip install --upgrade pip wheel
# echo "Installing requirements.txt + test dependencies..."
# python -m pip install -r requirements.txt tox tox-gh-actions certifi decorator dict2xml pyflakes "pypdf>=4.1.0" "weasyprint>=53.0,!=57.0,!=60.0"
# python -m pip install -r requirements.txt tox tox-gh-actions certifi decorator dict2xml pyflakes "pypdf==4.1.0" "weasyprint>=53.0,!=57.0,!=60.0"
# - name: Generate Valid Tests
# run: |
# make yestests || true
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ deps =
pyflakes
decorator
dict2xml
pypdf>=4.1.0
pypdf==4.1.0
weasyprint>=53.0,!=57.0,!=60.0

0 comments on commit b6dfcfe

Please sign in to comment.