mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-09-10 02:13:41 +08:00
1badeef042
* bump to 18.6 * bump kernel * mdma: remove duplicate "serial" command entry (#605) * bump kernel * more PHY tuning * bump kernel * add dependencies * bump kernel * bump to 18.8 * bump kernel --------- Co-authored-by: Trey Moen <50057480+greatgitsby@users.noreply.github.com>
42 lines
816 B
TOML
42 lines
816 B
TOML
[project]
|
|
name = "agnos"
|
|
version = "0.1.0"
|
|
authors = [{name = "Vehicle Researcher", email = "user@comma.ai"}]
|
|
requires-python = ">=3.12.3, <3.13"
|
|
description = ""
|
|
dependencies = [
|
|
"openpilot",
|
|
"openpilot[testing]",
|
|
"tinymesa==25.2.7.2",
|
|
"do-mpc",
|
|
|
|
"pycapnp==2.1.0", # 2.2 introduces a memory leak due to cyclic references
|
|
|
|
# hardware.py
|
|
"dbus-python",
|
|
# amplifier.py
|
|
"smbus2",
|
|
|
|
# provisioning
|
|
"pyusb",
|
|
# pandad
|
|
"libusb1 ==3.1.0", # recent versions segfault on comma three
|
|
"paramiko",
|
|
|
|
# extra nice-to-haves
|
|
"evdev",
|
|
"ipython",
|
|
"py-spy",
|
|
"spidev2",
|
|
"flaky",
|
|
"matplotlib",
|
|
|
|
"libdatachannel-py>=2026.1.0.dev2",
|
|
|
|
# GUIs
|
|
"raylib @ git+https://github.com/commaai/dependencies.git@release-raylib#subdirectory=raylib",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
openpilot = { path = "openpilot" }
|