From 7b58c4e58d973e680062245b2ab6260b737a2ef1 Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Thu, 28 May 2020 12:57:40 +0200 Subject: [PATCH] add pikepdf to test dependencies --- .travis.yml | 2 +- appveyor.yml | 2 +- setup.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2c5e949..c6e6dcb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ matrix: - python3 -m pip install --upgrade virtualenv - virtualenv -p python3 --system-site-packages "$HOME/venv" - source "$HOME/venv/bin/activate" -install: pip install wheel pillow pytest pdfrw +install: pip install wheel pillow pytest pdfrw pikepdf script: - python --version - python setup.py test diff --git a/appveyor.yml b/appveyor.yml index 7a6b495..bf743b2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -16,7 +16,7 @@ environment: - PYTHON: "C:\\Python37-x64" install: - - "%PYTHON%\\python.exe -m pip install wheel pytest pdfrw pillow pyinstaller" + - "%PYTHON%\\python.exe -m pip install wheel pytest pdfrw pillow pyinstaller pikepdf" build: off diff --git a/setup.py b/setup.py index 9abe2e9..808181c 100644 --- a/setup.py +++ b/setup.py @@ -9,6 +9,7 @@ INSTALL_REQUIRES = ( TESTS_REQUIRE = ( 'pdfrw', + 'pikepdf', )