diff --git a/setup.py b/setup.py index a771bfb..aa790f8 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ ) LONG_DESCRIPTION_CONTENT_TYPE = "text/markdown" URL = "https://github.com/mapillary/mapillary-python-sdk" -REQUIRES_PYTHON = ">=3.0" +REQUIRES_PYTHON = ">=3.10" HERE = os.path.abspath(os.path.dirname(__file__)) REQUIREMENTS = [ "mapbox-vector-tile>=2.1.0", @@ -58,14 +58,11 @@ "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] PROJECT_URLS = { "Download": "https://pypi.org/project/mapillary/#files", diff --git a/src/mapillary/config/api/entities.py b/src/mapillary/config/api/entities.py index 4108797..3a317dd 100644 --- a/src/mapillary/config/api/entities.py +++ b/src/mapillary/config/api/entities.py @@ -371,6 +371,7 @@ def get_image_fields() -> list: """ return [ + "id", "altitude", "atomic_scale", "camera_parameters", @@ -441,6 +442,7 @@ def get_map_feature_fields() -> list: """ return [ + "id", "first_seen_at", "last_seen_at", "object_value", @@ -490,7 +492,7 @@ def get_detection_with_image_id_fields() -> list: :rtype: list """ - return ["created_at", "geometry", "image", "value"] + return ["id", "created_at", "geometry", "image", "value"] @staticmethod def get_detection_with_map_feature_id( @@ -533,7 +535,7 @@ def get_detection_with_map_feature_id_fields() -> list: :rtype: list """ - return ["created_at", "geometry", "image", "value"] + return ["id", "created_at", "geometry", "image", "value"] @staticmethod def get_organization_id( @@ -574,7 +576,7 @@ def get_organization_id_fields() -> list: :rtype: list """ - return ["slug", "name", "description"] + return ["id", "slug", "name", "description"] @staticmethod def get_sequence(