Update most Python dependencies.

A lot of the dependency versions we have pinned don't have wheels for
Python 3.12. Update almost all of them so we can upgrade Python.

The few that weren't upgraded here are black and mypy, since those will
be a bit invasive, and Pillow, which has an API change I don't want to
deal with right now (I've got a commit on another machine that has
already done the migration, so I'll do it later).
This commit is contained in:
Dan Albert
2023-11-30 20:17:36 -08:00
parent 46766ecbd4
commit 7bc35ef7f4
14 changed files with 87 additions and 69 deletions

View File

@@ -33,7 +33,7 @@ class ControlPointJs(BaseModel):
id=control_point.id,
name=control_point.name,
blue=control_point.captured,
position=control_point.position.latlng(),
position=LeafletPoint.from_pydcs(control_point.position),
mobile=control_point.moveable and control_point.captured,
destination=destination,
sidc=str(control_point.sidc()),