From 2c3e9f1eabd592c8e14e183caa4b3f1b4777c2a0 Mon Sep 17 00:00:00 2001 From: Tao Peng Date: Sun, 9 Mar 2025 23:04:45 -0700 Subject: [PATCH 1/3] switch back to ubuntu-20.04 --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4ae31ec8e..7c3367d26 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,9 @@ jobs: # architecture: arm64 # Windows ARM # Linux builds - - platform: ubuntu-latest + # When building with ubunutu-latest (24.04), we still see the following runtime error: + # [PYI-4568:ERROR] Failed to load Python shared library '/tmp/_MEI3FR8Jx/libpython3.11.so.1.0': dlopen: /lib64/libm.so.6: version `GLIBC_2.38' not found (required by /tmp/_MEI3FR8Jx/libpython3.11.so.1.0) + - platform: ubuntu-20.04 os: linux architecture: x64 - platform: 2-core-ubuntu-arm # or ubuntu-latest-arm From 6caa27330f07d712db0dee0d1918864436cf110e Mon Sep 17 00:00:00 2001 From: Tao Peng Date: Sun, 9 Mar 2025 23:10:29 -0700 Subject: [PATCH 2/3] bump to v0.13.3 --- mapillary_tools/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mapillary_tools/__init__.py b/mapillary_tools/__init__.py index bec33f068..c396e992c 100644 --- a/mapillary_tools/__init__.py +++ b/mapillary_tools/__init__.py @@ -1 +1 @@ -VERSION = "0.13.2" +VERSION = "0.13.3" From 53d9ef32bffeccca37e5caf0fd12a655a6d6c230 Mon Sep 17 00:00:00 2001 From: Tao Peng Date: Wed, 5 Mar 2025 20:55:18 -0800 Subject: [PATCH 3/3] chore: increase the filesize limit per sequence to 110GB --- mapillary_tools/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mapillary_tools/constants.py b/mapillary_tools/constants.py index ba2482b49..a1a7f4292 100644 --- a/mapillary_tools/constants.py +++ b/mapillary_tools/constants.py @@ -45,6 +45,6 @@ # Max number of images per sequence MAX_SEQUENCE_LENGTH = int(os.getenv(_ENV_PREFIX + "MAX_SEQUENCE_LENGTH", 1000)) # Max file size per sequence (sum of image filesizes in the sequence) -MAX_SEQUENCE_FILESIZE: str = os.getenv(_ENV_PREFIX + "MAX_SEQUENCE_FILESIZE", "10G") +MAX_SEQUENCE_FILESIZE: str = os.getenv(_ENV_PREFIX + "MAX_SEQUENCE_FILESIZE", "110G") # Max number of pixels per sequence (sum of image pixels in the sequence) MAX_SEQUENCE_PIXELS: str = os.getenv(_ENV_PREFIX + "MAX_SEQUENCE_PIXELS", "6G")