From a5bb81520122a190b8143cefbc5466f67a78451f Mon Sep 17 00:00:00 2001 From: Charles Gaydon <11660435+CharlesGaydon@users.noreply.github.com> Date: Mon, 30 Oct 2023 15:48:31 +0100 Subject: [PATCH 1/5] Uncomment seaborn as a dependency --- environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index 55ce35e7..f8c53368 100644 --- a/environment.yml +++ b/environment.yml @@ -32,7 +32,7 @@ dependencies: - rich # beautiful text formatting in terminal - sh # for running bash commands in some tests # - scikit-learn # used in some callbacks - # - seaborn # used in some callbacks + - seaborn # used in some callbacks # - jupyterlab # better jupyter notebooks - pudb # debugger - pip: From 0eedea4f42b2d1e176bcf6fc36605e8263c91b14 Mon Sep 17 00:00:00 2001 From: Charles Gaydon <11660435+CharlesGaydon@users.noreply.github.com> Date: Mon, 30 Oct 2023 15:49:31 +0100 Subject: [PATCH 2/5] Update CHANGELOG.md --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 50cbe0ef..85726bca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # CHANGELOG -## 3.5.1 +### 3.5.2 +- Uncomment seaborn as a dependency since it is necessary when plotting optimal learning rate graph. + +### 3.5.1 - Run CICD operations for all branches prefixed with "staging-" ## 3.5.0 From 95bd2c8b0b043f5e278c42225edd1084f401bf87 Mon Sep 17 00:00:00 2001 From: Charles Gaydon <11660435+CharlesGaydon@users.noreply.github.com> Date: Mon, 30 Oct 2023 15:49:44 +0100 Subject: [PATCH 3/5] Update package_metadata.yaml --- package_metadata.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_metadata.yaml b/package_metadata.yaml index 2a511fcf..db6e12d3 100644 --- a/package_metadata.yaml +++ b/package_metadata.yaml @@ -1,4 +1,4 @@ -__version__: "3.5.1" +__version__: "3.5.2" __name__: "myria3d" __url__: "https://github.com/IGNF/myria3d" __description__: "Deep Learning for the Semantic Segmentation of Aerial Lidar Point Clouds" From 4614b1cc3b1c50acc0ca8ea71772d20eb06dcbe5 Mon Sep 17 00:00:00 2001 From: Charles Gaydon <11660435+CharlesGaydon@users.noreply.github.com> Date: Mon, 30 Oct 2023 17:21:55 +0100 Subject: [PATCH 4/5] Fix urllib3 to be below 2 to avoid recent breaking change --- environment.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/environment.yml b/environment.yml index f8c53368..3ea9780e 100644 --- a/environment.yml +++ b/environment.yml @@ -44,6 +44,7 @@ dependencies: - pytorch-lightning==1.5.9 - torchmetrics==0.7.* # Else, pytorch-lightning will install the latest - comet_ml==3.31.* + - urllib<2 # To solve for https://github.com/GeneralMills/pytrends/issues/591 # Wheels for torch-geometric optionnal dependencies - https://data.pyg.org/whl/torch-1.11.0%2Bcu113/torch_cluster-1.6.0-cp39-cp39-linux_x86_64.whl - https://data.pyg.org/whl/torch-1.11.0%2Bcu113/torch_scatter-2.0.9-cp39-cp39-linux_x86_64.whl From adaef2f327e8d2ccf308534b01661ea1eaa5ae28 Mon Sep 17 00:00:00 2001 From: Charles Gaydon <11660435+CharlesGaydon@users.noreply.github.com> Date: Thu, 2 Nov 2023 10:08:25 +0100 Subject: [PATCH 5/5] fix: urllib3 instead of urllib in environment.yml --- environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index 3ea9780e..1462423c 100644 --- a/environment.yml +++ b/environment.yml @@ -44,7 +44,7 @@ dependencies: - pytorch-lightning==1.5.9 - torchmetrics==0.7.* # Else, pytorch-lightning will install the latest - comet_ml==3.31.* - - urllib<2 # To solve for https://github.com/GeneralMills/pytrends/issues/591 + - urllib3<2 # To solve for https://github.com/GeneralMills/pytrends/issues/591 # Wheels for torch-geometric optionnal dependencies - https://data.pyg.org/whl/torch-1.11.0%2Bcu113/torch_cluster-1.6.0-cp39-cp39-linux_x86_64.whl - https://data.pyg.org/whl/torch-1.11.0%2Bcu113/torch_scatter-2.0.9-cp39-cp39-linux_x86_64.whl