Skip to content

Commit

Permalink
Merge pull request #10 from eisenforschung/further_fixes
Browse files Browse the repository at this point in the history
Further fixes
  • Loading branch information
srmnitc authored Jan 13, 2025
2 parents f2be0d3 + 3bc636a commit 2ef0cf4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.3
current_version = 0.1.4
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion compositionspace/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.1.3"
__version__ = "0.1.4"
__nexus__version__ = "v2022.07.post1.dev1189+g92f26b528"
__nexus__version__hash__ = "92f26b528"
2 changes: 1 addition & 1 deletion compositionspace/segmentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from setuptools import setup

setup(
version='0.1.3',
version='0.1.4',
)

0 comments on commit 2ef0cf4

Please sign in to comment.