Skip to content

Commit

Permalink
prepare alpha 3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cleder committed Dec 7, 2022
1 parent 38ce87c commit d7d2939
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions fastkml/tests/views_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ def test_create_camera(self) -> None:
assert camera.target_id == "target-cam-id"
assert camera.begin == datetime.datetime(2019, 1, 1)
assert camera.end == datetime.datetime(2019, 1, 2)
assert camera.to_string()

def test_camera_read(self) -> None:
"""Test the reading of a camera."""
Expand Down Expand Up @@ -123,6 +124,7 @@ def test_create_look_at(self) -> None:
assert look_at.timestamp == datetime.datetime(2019, 1, 1)
assert look_at.begin is None
assert look_at.end is None
assert look_at.to_string()

def test_look_at_read(self) -> None:
look_at_xml = (
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def run_tests(self) -> None:

setup(
name="fastkml",
version="1.0.alpha.2",
version="1.0.alpha.3",
description="Fast KML processing in python",
long_description=(
open("README.rst").read()
Expand Down

0 comments on commit d7d2939

Please sign in to comment.