mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
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:
@@ -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()),
|
||||
|
||||
Reference in New Issue
Block a user