From ca44f2788f05f5b6c8dae0f8b598b02703d4f79d Mon Sep 17 00:00:00 2001 From: Sarath Date: Mon, 13 Jan 2025 15:15:36 +0100 Subject: [PATCH 1/2] fix another fstring --- compositionspace/segmentation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compositionspace/segmentation.py b/compositionspace/segmentation.py index 74c346f..1c90f7a 100755 --- a/compositionspace/segmentation.py +++ b/compositionspace/segmentation.py @@ -135,7 +135,7 @@ def perform_bics_minimization_and_write_results(self): C_mod[:, j] = self.composition_matrix[:, idx] else: raise KeyError( - f"{trg} does not exist in {self.config["results_file_path"]} !" + f"{trg} does not exist in {self.config['results_file_path']} !" ) else: print("Using results without automated phase assignment") From 3bc636a09316165a609efd9d84aa767433830cad Mon Sep 17 00:00:00 2001 From: Sarath Date: Mon, 13 Jan 2025 15:15:45 +0100 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.1.3=20=E2=86=92=200.1.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- compositionspace/__init__.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 26912e0..fa11dd3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.3 +current_version = 0.1.4 commit = True tag = False diff --git a/compositionspace/__init__.py b/compositionspace/__init__.py index 595d254..5a226cd 100644 --- a/compositionspace/__init__.py +++ b/compositionspace/__init__.py @@ -1,3 +1,3 @@ -__version__ = "0.1.3" +__version__ = "0.1.4" __nexus__version__ = "v2022.07.post1.dev1189+g92f26b528" __nexus__version__hash__ = "92f26b528" \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index fa59119..686c558 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "compositionspace" -version = '0.1.3' +version = '0.1.4' authors = [ { name = "Alaukik Saxena, Sarath Menon, Mariano Forti, Markus Kühbach" }, ] diff --git a/setup.py b/setup.py index a1ec9d9..e9eae59 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ from setuptools import setup setup( - version='0.1.3', + version='0.1.4', )