We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f721c07 commit ddfcb13Copy full SHA for ddfcb13
.github/workflows/pythonpackage.yml
@@ -24,8 +24,12 @@ jobs:
24
# needed because the postgres container does not provide a healthcheck
25
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
26
steps:
27
- - name: psycopg2 prerequisites
28
- run: sudo apt-get install python3-dev libpq-dev
+ - name: Install system packages for Pillow and psycopg2
+ run: |
29
+ sudo apt-get update
30
+ sudo apt-get install -y python3-dev libpq-dev libjpeg-dev zlib1g-dev \
31
+ libfreetype6-dev liblcms2-dev libwebp-dev libtiff5-dev \
32
+ libopenjp2-7-dev tk-dev tcl-dev
33
- uses: actions/checkout@v1
34
- name: Set up Python ${{ matrix.python-version }}
35
uses: actions/setup-python@v1
0 commit comments