Skip to content

Commit 86635b8

Browse files
only spaces but to double check
1 parent 9d23067 commit 86635b8

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,3 +123,5 @@ dmypy.json
123123

124124
# Pyre type checker
125125
.pyre/
126+
127+
line.select

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,12 @@ def run(self):
3434
]
3535

3636
# Get git commit info to build version number/tag
37-
repo = git.Repo('.git')
37+
'''repo = git.Repo('.git')
3838
git_hash = repo.head.object.hexsha
3939
git_url = repo.remotes.origin.url
4040
v = repo.git.describe(always=True)
41-
if repo.is_dirty(): v += ".dirty"
41+
if repo.is_dirty(): v += ".dirty"'''
42+
v = 1.1
4243

4344
setup(
4445
name="wormbrain",

wormbrain/brains.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ def get_distance(self, volume, i, j):
789789
d = np.sqrt(np.sum((ci-cj)**2))
790790

791791
return d
792-
792+
793793
def set_labels(self, vol, labels, confidences=None):
794794
self.labels[vol] = labels
795795
if confidences is not None:

wormbrain/match.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -471,3 +471,4 @@ def _plot_matches_2d(A, B, Match, **kwargs):
471471
ax.plot((A[j,p],B[i,p]),(A[j,q],B[i,q]),'--',c='orange')
472472

473473
return fig, ax
474+

0 commit comments

Comments
 (0)