cleanup unused pip packages (#22947)

* cleanup unused pip packages

* fix linter
pull/22953/head
Willem Melching 3 years ago committed by GitHub
parent 372b0f10da
commit f1c77f97b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 49
      Pipfile
  2. 2370
      Pipfile.lock
  3. 2
      selfdrive/test/openpilotci.py
  4. 2
      selfdrive/test/update_ci_routes.py
  5. 4
      tools/lib/framereader.py
  6. 4
      tools/zookeeper/__init__.py

@ -4,82 +4,33 @@ url = "https://pypi.org/simple"
verify_ssl = true verify_ssl = true
[dev-packages] [dev-packages]
aenum = "*"
aiohttp = "*"
azure-cli-core = "*"
azure-common = "*"
azure-core = "*"
azure-nspkg = "~=3.0"
azure-storage-blob = "~=2.1"
azure-storage-common = "~=2.1"
azure-storage-nspkg = "~=3.1"
"backports.lzma" = "*"
boto = "*"
boto3 = "*"
control = "*" control = "*"
coverage = "*" coverage = "*"
datadog = "*"
dictdiffer = "*" dictdiffer = "*"
elasticsearch = "*"
fastcluster = "*" fastcluster = "*"
Flask-Cors = "*"
Flask-SocketIO = "*"
ft4222 = "*"
GeoAlchemy2 = "*"
git-pylint-commit-hook = "*"
gunicorn = "*"
h5py = "*"
hexdump = "*" hexdump = "*"
hypothesis = "*" hypothesis = "*"
imageio = "*"
inputs = "*" inputs = "*"
ipykernel = "*"
ipython = "*"
joblib = "*"
json-logging-py = "*"
jupyter = "*"
jupyterlab = "*"
jupyterlab-vim = "*"
keras_applications = "*"
lru-dict = "*" lru-dict = "*"
markdown-it-py = "*" markdown-it-py = "*"
matplotlib = "*" matplotlib = "*"
mock = "*"
mpld3 = "*"
msgpack-python = "*"
mypy = "*" mypy = "*"
myst-parser = "*" myst-parser = "*"
networkx = "~=2.3"
numpy = "*" numpy = "*"
opencv-python-headless = "*" opencv-python-headless = "*"
osmium = "*"
parameterized = "*" parameterized = "*"
paramiko = "*" paramiko = "*"
pprofile = "*" pprofile = "*"
pre-commit = "*" pre-commit = "*"
pycurl = "*" pycurl = "*"
pygame = "*" pygame = "*"
Pygments = "*"
pymongo = "*"
PyMySQL = "~=0.9"
pynmea2 = "*"
pyprof2calltree = "*" pyprof2calltree = "*"
pyproj = "*"
python-logstash = "*"
redis = "*"
reverse_geocoder = "*" reverse_geocoder = "*"
s2sphere = "*"
scikit-image = "*"
scipy = "*" scipy = "*"
seaborn = "*"
Shapely = "*"
simplejson = "*"
sphinx = "*" sphinx = "*"
sphinx-rtd-theme = "*" sphinx-rtd-theme = "*"
SQLAlchemy = "*"
subprocess32 = "*" subprocess32 = "*"
tenacity = "*" tenacity = "*"
Werkzeug = "*"
[packages] [packages]
atomicwrites = "*" atomicwrites = "*"

2370
Pipfile.lock generated

File diff suppressed because it is too large Load Diff

@ -12,7 +12,7 @@ def get_url(route_name, segment_num, log_type="rlog"):
return BASE_URL + "%s/%s/%s.%s" % (route_name.replace("|", "/"), segment_num, log_type, ext) return BASE_URL + "%s/%s/%s.%s" % (route_name.replace("|", "/"), segment_num, log_type, ext)
def upload_file(path, name): def upload_file(path, name):
from azure.storage.blob import BlockBlobService from azure.storage.blob import BlockBlobService # pylint: disable=import-error
sas_token = None sas_token = None
if os.path.isfile(TOKEN_PATH): if os.path.isfile(TOKEN_PATH):

@ -1,7 +1,7 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
import sys import sys
import subprocess import subprocess
from azure.storage.blob import BlockBlobService from azure.storage.blob import BlockBlobService # pylint: disable=import-error
from selfdrive.test.test_routes import routes as test_car_models_routes from selfdrive.test.test_routes import routes as test_car_models_routes
from selfdrive.test.process_replay.test_processes import original_segments as replay_segments from selfdrive.test.process_replay.test_processes import original_segments as replay_segments

@ -6,10 +6,10 @@ import struct
import subprocess import subprocess
import tempfile import tempfile
import threading import threading
from enum import IntEnum
from functools import wraps from functools import wraps
import numpy as np import numpy as np
from aenum import Enum
from lru import LRU from lru import LRU
import _io import _io
@ -41,7 +41,7 @@ class DoNothingContextManager:
pass pass
class FrameType(Enum): class FrameType(IntEnum):
raw = 1 raw = 1
h265_stream = 2 h265_stream = 2

@ -2,8 +2,8 @@
# Python library to control Zookeeper # Python library to control Zookeeper
import ft4222 import ft4222 # pylint: disable=import-error
import ft4222.I2CMaster import ft4222.I2CMaster # pylint: disable=import-error
DEBUG = False DEBUG = False

Loading…
Cancel
Save