cleanup unused python packages (#29353)

* rm unused python packages

* lock
old-commit-hash: d6857996d3
beeps
Adeeb Shihadeh 2 years ago committed by GitHub
parent cf1d402531
commit 9a7e8e931a
  1. 4
      poetry.lock
  2. 11
      pyproject.toml
  3. 4
      selfdrive/test/profiling/profiler.py

4
poetry.lock generated

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ae0baf97dbbf561510d724711488fbe0a01f6b7bdb079dc52057fbb92456cf35
size 470684
oid sha256:2cc331237fadcce91056292934c956aab54adeb229026dec9040c2c58a34a0dc
size 445734

@ -26,9 +26,7 @@ cffi = "*"
crcmod = "*"
cryptography = "*"
Cython = "*"
Flask = "*"
future-fstrings = "*" # for acados
gunicorn = "*"
hatanaka = "==2.4"
hexdump = "*"
Jinja2 = "*"
@ -38,7 +36,6 @@ numpy = "~1.23" # pinned for acados
onnx = ">=1.14.0"
onnxruntime-gpu = { version = ">=1.15.1", platform = "linux", markers = "platform_machine == 'x86_64'" }
pillow = "*"
protobuf = "*"
psutil = "*"
pyaudio = "*"
pycapnp = "*"
@ -47,7 +44,6 @@ pydub = "*"
PyJWT = "*"
pyopencl = "*"
pyserial = "*"
python-dateutil = "*"
PyYAML = "*"
pyzmq = "*"
requests = "*"
@ -62,7 +58,6 @@ sympy = "*"
timezonefinder = "*"
tqdm = "*"
urllib3 = "*"
utm = "*"
websocket_client = "*"
polyline = "*"
sconscontrib = {git = "https://github.com/SCons/scons-contrib.git"}
@ -73,15 +68,12 @@ av = "*"
azure-storage-blob = "~2.1"
breathe = "*"
carla = { url = "https://github.com/commaai/carla/releases/download/3.11.4/carla-0.9.14-cp311-cp311-linux_x86_64.whl", platform = "linux", markers = "platform_machine == 'x86_64'" }
control = "*"
coverage = "*"
dictdiffer = "*"
ft4222 = "*"
hexdump = "*"
hypothesis = "==6.46.7"
inputs = "*"
lru-dict = "*"
lxml = "*"
markdown-it-py = "*"
matplotlib = "*"
mpld3 = "*"
@ -91,7 +83,6 @@ natsort = "*"
opencv-python-headless = "*"
pandas = "*"
parameterized = "^0.8"
paramiko = "*"
pprofile = "*"
pre-commit = "*"
pycurl = "*"
@ -99,7 +90,6 @@ pygame = "*"
pyprof2calltree = "*"
pytest = "*"
pytest-xdist = "*"
reverse_geocoder = "*"
scipy = "*"
sphinx = "*"
sphinx-rtd-theme = "*"
@ -109,7 +99,6 @@ tenacity = "*"
types-atomicwrites = "*"
types-certifi = "*"
types-pycurl = "*"
types-python-dateutil = "*"
types-PyYAML = "*"
types-requests = "*"
types-tabulate = "*"

@ -2,8 +2,8 @@
import os
import sys
import cProfile # pylint: disable=import-error
import pprofile # pylint: disable=import-error
import pyprof2calltree # pylint: disable=import-error
import pprofile
import pyprof2calltree
from common.params import Params
from tools.lib.logreader import LogReader

Loading…
Cancel
Save