c-dependenciesΒΆ

Install some Python requirements that needs gcc to be built when installed as wheels.

I started trying with lxml, PyPDF2 and python-docx.

I found that lxml==3.8.0 (an old version) does not compile.


1
2
3
4
5
6
sphinx-autorun

# C dependencies to be built
lxml  # ==3.8.0
PyPDF2
python-docx

Sphinx configuration file to build this docs (see full file),

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# -*- coding: utf-8 -*-

# Default settings
project = 'Test Builds'
extensions = [
    'sphinx_autorun',
]

# Include all your settings here
html_theme = 'sphinx_rtd_theme'





>>> # Build at
>>> import datetime
>>> datetime.datetime.utcnow()  # UTC
datetime.datetime(2021, 10, 4, 10, 23, 22, 613924)