Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade SUMO to 1.12.0 #1751

Merged
merged 5 commits into from
Nov 28, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ install_requires =
setuptools>=41.0.0,!=50.0
cached-property>=1.5.2
click>=7.1.2 # used in scl
eclipse-sumo==1.10.0 # sumo
eclipse-sumo==1.12.0 # sumo
gym>=0.17.3,<=0.19.0
numpy>=1.19.5 # required for tf 2.4 below
pandas>=1.3.4 # only used by zoo/evaluation
Expand Down
2 changes: 1 addition & 1 deletion smarts/core/tests/test_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def test_sumo_map(sumo_scenario):
rpt = RoadMap.Route.RoutePoint(pt=point)
rendpt = RoadMap.Route.RoutePoint(pt=Point(198, 65.20))
db = route.distance_between(rpt, rendpt)
assert db == 134.01
assert math.isclose(db, 134.01, rel_tol=1e-03)

cands = route.project_along(rpt, 134.01)
for r2lane in r2.lanes:
Expand Down
2 changes: 1 addition & 1 deletion utils/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH"
RUN pip install --upgrade pip wheel

# Setup SUMO.
RUN pip install eclipse-sumo==1.10.0
RUN pip install eclipse-sumo==1.12.0
ENV SUMO_HOME $VIRTUAL_ENV/lib64/python3.7/site-packages/sumo

# Install requirements.txt .
Expand Down