Skip to content

Commit c419a9c

Browse files
committed
Update poetry version and ci.yaml
1 parent 339177a commit c419a9c

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ pytest-cov = "^5.0.0"
4545
mypy = "^1.9.0"
4646

4747
[build-system]
48-
requires = ["poetry>=1.1.2"]
48+
requires = ["poetry>=1.8.2"]
4949
build-backend = "poetry.masonry.api"

tests/test_map.py

+6-7
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,17 @@
77

88
@pytest.fixture
99
def map_properties() -> Dict[str, Any]:
10-
return dict(identifier="gmap",
11-
varname="gmap",
12-
lat=37.4419,
13-
lng=-122.1419)
10+
return dict(identifier="gmap", varname="gmap", lat=37.4419, lng=-122.1419)
1411

1512

1613
@pytest.fixture
1714
def markers() -> List[Dict]:
1815
return [
1916
{
20-
"content": {"icon_url": "http://maps.google.com/"
21-
"mapfiles/ms/icons/green-dot.png"},
17+
"content": {
18+
"icon_url": "http://maps.google.com/"
19+
"mapfiles/ms/icons/green-dot.png"
20+
},
2221
"latitude": 37.4419,
2322
"longitude": -122.1419,
2423
"infobox": "<b>Hello World</b>",
@@ -33,7 +32,7 @@ def markers() -> List[Dict]:
3332
"background": "",
3433
"glyph": "",
3534
"scale": 2.0,
36-
}
35+
},
3736
},
3837
]
3938

tests/test_marker.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ def marker_pin_url() -> Marker:
2121
longitude=-122.1419,
2222
content={
2323
"icon_url": "https://developers.google.com/maps/"
24-
"documentation/javascript/examples/"
25-
"full/images/beachflag.png"
24+
"documentation/javascript/examples/"
25+
"full/images/beachflag.png"
2626
},
2727
infobox="<b>Hello World</b>",
2828
)

0 commit comments

Comments
 (0)