Skip to content

Commit 2ef0cf4

Browse files
authored
Merge pull request #10 from eisenforschung/further_fixes
Further fixes
2 parents f2be0d3 + 3bc636a commit 2ef0cf4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.3
2+
current_version = 0.1.4
33
commit = True
44
tag = False
55

compositionspace/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "0.1.3"
1+
__version__ = "0.1.4"
22
__nexus__version__ = "v2022.07.post1.dev1189+g92f26b528"
33
__nexus__version__hash__ = "92f26b528"

compositionspace/segmentation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def perform_bics_minimization_and_write_results(self):
135135
C_mod[:, j] = self.composition_matrix[:, idx]
136136
else:
137137
raise KeyError(
138-
f"{trg} does not exist in {self.config["results_file_path"]} !"
138+
f"{trg} does not exist in {self.config['results_file_path']} !"
139139
)
140140
else:
141141
print("Using results without automated phase assignment")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "compositionspace"
7-
version = '0.1.3'
7+
version = '0.1.4'
88
authors = [
99
{ name = "Alaukik Saxena, Sarath Menon, Mariano Forti, Markus Kühbach" },
1010
]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from setuptools import setup
22

33
setup(
4-
version='0.1.3',
4+
version='0.1.4',
55
)

0 commit comments

Comments
 (0)