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 version https://git-lfs.github.com/spec/v1
oid sha256:ae0baf97dbbf561510d724711488fbe0a01f6b7bdb079dc52057fbb92456cf35 oid sha256:2cc331237fadcce91056292934c956aab54adeb229026dec9040c2c58a34a0dc
size 470684 size 445734

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

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

Loading…
Cancel
Save