mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
Update dependencies.
This commit is contained in:
parent
a51b3b4621
commit
66c8b96c9a
@ -1,5 +1,6 @@
|
|||||||
import itertools
|
import itertools
|
||||||
import random
|
import random
|
||||||
|
from collections.abc import Iterator
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
@ -151,7 +152,7 @@ class WaypointGenerator:
|
|||||||
min_fuel: float = consumption.min_safe
|
min_fuel: float = consumption.min_safe
|
||||||
|
|
||||||
# The flight plan (in reverse) up to and including the arrival point.
|
# The flight plan (in reverse) up to and including the arrival point.
|
||||||
main_flight_plan = reversed(waypoints)
|
main_flight_plan: Iterator[FlightWaypoint] = reversed(waypoints)
|
||||||
try:
|
try:
|
||||||
while waypoint := next(main_flight_plan):
|
while waypoint := next(main_flight_plan):
|
||||||
if waypoint.waypoint_type is FlightWaypointType.LANDING_POINT:
|
if waypoint.waypoint_type is FlightWaypointType.LANDING_POINT:
|
||||||
|
|||||||
@ -1,47 +1,55 @@
|
|||||||
altgraph==0.17
|
altgraph==0.17.2
|
||||||
appdirs==1.4.4
|
appdirs==1.4.4
|
||||||
|
atomicwrites==1.4.0
|
||||||
attrs==21.2.0
|
attrs==21.2.0
|
||||||
black==21.4b0
|
backports.entry-points-selectable==1.1.1
|
||||||
certifi==2020.12.5
|
black==21.11b1
|
||||||
cfgv==3.2.0
|
certifi==2021.10.8
|
||||||
click==7.1.2
|
cfgv==3.3.1
|
||||||
distlib==0.3.1
|
click==8.0.3
|
||||||
Faker==8.2.1
|
colorama==0.4.4
|
||||||
filelock==3.0.12
|
distlib==0.3.3
|
||||||
|
Faker==9.8.2
|
||||||
|
filelock==3.4.0
|
||||||
future==0.18.2
|
future==0.18.2
|
||||||
identify==1.5.13
|
identify==2.4.0
|
||||||
iniconfig==1.1.1
|
iniconfig==1.1.1
|
||||||
Jinja2==2.11.3
|
Jinja2==3.0.3
|
||||||
macholib==1.14
|
macholib==1.15.2
|
||||||
MarkupSafe==1.1.1
|
MarkupSafe==2.0.1
|
||||||
mypy==0.812
|
mypy==0.910
|
||||||
mypy-extensions==0.4.3
|
mypy-extensions==0.4.3
|
||||||
nodeenv==1.5.0
|
nodeenv==1.6.0
|
||||||
packaging==20.9
|
packaging==21.3
|
||||||
pathspec==0.8.1
|
pathspec==0.9.0
|
||||||
pefile==2019.4.18
|
pefile==2021.9.3
|
||||||
Pillow==8.3.2
|
Pillow==8.4.0
|
||||||
pluggy==0.13.1
|
platformdirs==2.4.0
|
||||||
pre-commit==2.10.1
|
pluggy==1.0.0
|
||||||
py==1.10.0
|
pre-commit==2.15.0
|
||||||
-e git://github.com/pydcs/dcs@6608b2ac083ed4ab127b56ec1490fe05070e04ae#egg=pydcs
|
py==1.11.0
|
||||||
pyinstaller==4.3
|
-e git+git://github.com/pydcs/dcs@6608b2ac083ed4ab127b56ec1490fe05070e04ae#egg=pydcs
|
||||||
pyinstaller-hooks-contrib==2021.1
|
pyinstaller==4.7
|
||||||
pyparsing==2.4.7
|
pyinstaller-hooks-contrib==2021.3
|
||||||
pyproj==3.0.1
|
pyparsing==3.0.6
|
||||||
|
pyproj==3.3.0
|
||||||
PySide2==5.15.2
|
PySide2==5.15.2
|
||||||
pytest==6.2.4
|
pytest==6.2.5
|
||||||
python-dateutil==2.8.1
|
python-dateutil==2.8.2
|
||||||
pywin32-ctypes==0.2.0
|
pywin32-ctypes==0.2.0
|
||||||
PyYAML==5.4.1
|
PyYAML==6.0
|
||||||
regex==2020.11.13
|
regex==2021.11.10
|
||||||
Shapely==1.7.1
|
Shapely==1.8.0
|
||||||
shiboken2==5.15.2
|
shiboken2==5.15.2
|
||||||
six==1.15.0
|
six==1.16.0
|
||||||
tabulate==0.8.7
|
tabulate==0.8.9
|
||||||
text-unidecode==1.3
|
text-unidecode==1.3
|
||||||
toml==0.10.2
|
toml==0.10.2
|
||||||
typed-ast==1.4.2
|
tomli==1.2.2
|
||||||
types-Pillow==8.3.1
|
typed-ast==1.5.0
|
||||||
typing-extensions==3.7.4.3
|
types-certifi==2021.10.8.0
|
||||||
virtualenv==20.4.2
|
types-Pillow==8.3.7
|
||||||
|
types-PyYAML==6.0.1
|
||||||
|
types-tabulate==0.8.3
|
||||||
|
typing_extensions==4.0.0
|
||||||
|
virtualenv==20.10.0
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user