Add sphinx dependencies to Pipfile (#22720)

pull/22724/head
Willem Melching 2021-10-28 17:32:29 +02:00 committed by GitHub
parent 0ba40954b9
commit aa8952d0b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 481 additions and 307 deletions

137
Pipfile
View File

@ -4,120 +4,123 @@ url = "https://pypi.org/simple"
verify_ssl = true verify_ssl = true
[dev-packages] [dev-packages]
opencv-python= "*" aenum = "*"
ipython = "*" aiohttp = "*"
networkx = "~=2.3" azure-cli-core = "*"
azure-core = "*"
azure-common = "*" azure-common = "*"
azure-core = "*"
azure-nspkg = "~=3.0" azure-nspkg = "~=3.0"
azure-storage-blob = "~=2.1" azure-storage-blob = "~=2.1"
azure-storage-common = "~=2.1" azure-storage-common = "~=2.1"
azure-storage-nspkg = "~=3.1" azure-storage-nspkg = "~=3.1"
"backports.lzma" = "*"
boto = "*" boto = "*"
"boto3" = "*" boto3 = "*"
control = "*" control = "*"
coverage = "*"
datadog = "*" datadog = "*"
dictdiffer = "*"
elasticsearch = "*" elasticsearch = "*"
fastcluster = "*"
Flask-Cors = "*"
Flask-SocketIO = "*"
ft4222 = "*"
GeoAlchemy2 = "*"
git-pylint-commit-hook = "*"
gunicorn = "*" gunicorn = "*"
"h5py" = "*" h5py = "*"
hexdump = "*" hexdump = "*"
hypothesis = "*"
imageio = "*" imageio = "*"
inputs = "*"
ipykernel = "*" ipykernel = "*"
ipython = "*"
joblib = "*" joblib = "*"
json-logging-py = "*" json-logging-py = "*"
jupyter = "*" jupyter = "*"
jupyterlab = "*" jupyterlab = "*"
jupyterlab-vim = "*" jupyterlab-vim = "*"
"mpld3" = "*" keras_applications = "*"
lru-dict = "*"
matplotlib = "*"
mock = "*"
mpld3 = "*"
msgpack-python = "*" msgpack-python = "*"
mypy = "*"
myst-parser = "*"
networkx = "~=2.3"
numpy = "*" numpy = "*"
opencv-python= "*"
osmium = "*" osmium = "*"
parameterized = "*"
paramiko = "*"
pprofile = "*"
pre-commit = "*"
pycurl = "*" pycurl = "*"
git-pylint-commit-hook = "*" pygame = "==2.0.0.dev8"
Pygments = "*"
pymongo = "*" pymongo = "*"
"pynmea2" = "*" PyMySQL = "~=0.9"
pynmea2 = "*"
pyprof2calltree = "*"
pyproj = "*"
python-logstash = "*" python-logstash = "*"
redis = "*" redis = "*"
"s2sphere" = "*"
"subprocess32" = "*"
tenacity = "*"
keras_applications = "*"
PyMySQL = "~=0.9"
Werkzeug = "*"
"backports.lzma" = "*"
Flask-Cors = "*"
Flask-SocketIO = "*"
"GeoAlchemy2" = "*"
Pygments = "*"
reverse_geocoder = "*" reverse_geocoder = "*"
Shapely = "*" s2sphere = "*"
SQLAlchemy = "*"
scipy = "*"
fastcluster = "*"
simplejson = "*"
seaborn = "*"
pyproj = "*"
mock = "*"
matplotlib = "*"
dictdiffer = "*"
aenum = "*"
coverage = "*"
azure-cli-core = "*"
paramiko = "*"
aiohttp = "*"
lru-dict = "*"
scikit-image = "*" scikit-image = "*"
pygame = "==2.0.0.dev8" scipy = "*"
pprofile = "*" seaborn = "*"
pyprof2calltree = "*" Shapely = "*"
pre-commit = "*" simplejson = "*"
mypy = "*" sphinx = "*"
parameterized = "*" sphinx-rtd-theme = "*"
ft4222 = "*" SQLAlchemy = "*"
hypothesis = "*" subprocess32 = "*"
inputs = "*" tenacity = "*"
Werkzeug = "*"
[packages] [packages]
atomicwrites = "*" atomicwrites = "*"
casadi = "*" casadi = "*"
cffi = "*" cffi = "*"
crcmod = "*" crcmod = "*"
cryptography = "*"
Cython = "*"
flake8 = "*"
Flask = "*"
future-fstrings = "*" # for acados future-fstrings = "*" # for acados
gunicorn = "*"
hexdump = "*" hexdump = "*"
Jinja2 = "*"
json-rpc = "*"
libusb1 = "*" libusb1 = "*"
nose = "*"
numpy = "*" numpy = "*"
onnx = "*"
onnxruntime = "*"
pillow = "*"
psutil = "*" psutil = "*"
pycapnp = "==1.1.0" pycapnp = "==1.1.0"
cryptography = "*" pycryptodome = "*"
PyJWT = "*"
pylint = "*"
pyserial = "*"
python-dateutil = "*" python-dateutil = "*"
PyYAML = "*"
pyzmq = "*" pyzmq = "*"
requests = "*" requests = "*"
scons = "*"
sentry-sdk = "*"
setproctitle = "*" setproctitle = "*"
six = "*" six = "*"
smbus2 = "*" smbus2 = "*"
sympy = "!=1.6.1" sympy = "!=1.6.1"
tqdm = "*"
Cython = "*"
PyYAML = "*"
websocket_client = "*"
urllib3 = "*"
gunicorn = "*"
utm = "*"
json-rpc = "*"
Flask = "*"
nose = "*"
flake8 = "*"
pylint = "*"
pillow = "*"
scons = "*"
pycryptodome = "*"
"Jinja2" = "*"
PyJWT = "*"
pyserial = "*"
onnx = "*"
onnxruntime = "*"
timezonefinder = "*" timezonefinder = "*"
sentry-sdk = "*" tqdm = "*"
urllib3 = "*"
utm = "*"
websocket_client = "*"
[requires] [requires]
python_version = "3.8" python_version = "3.8"

648
Pipfile.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -14,9 +14,6 @@ RUN pip install --no-cache-dir pipenv==2020.8.13 && \
pip uninstall -y pipenv pip uninstall -y pipenv
# TODO: add to pipfile
RUN pip install sphinx-rtd-theme==1.0.0 sphinx==4.2.0 myst-parser==0.15.2
COPY SConstruct ${OPENPILOT_PATH} COPY SConstruct ${OPENPILOT_PATH}
COPY ./pyextra ${OPENPILOT_PATH}/pyextra COPY ./pyextra ${OPENPILOT_PATH}/pyextra