Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed May 27, 2022
1 parent 514811e commit d62894f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/fnndsc/mni-conda-base:civet2.1.1-python3.10.2
FROM docker.io/fnndsc/mni-conda-base:civet2.1.1-python3.10.4

LABEL org.opencontainers.image.authors="FNNDSC <dev@babyMRI.org>" \
org.opencontainers.image.title="sphere_mesh ChRIS plugin wrapper"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
chris_plugin~=0.0.10
chris_plugin==0.0.17
pycivet==0.0.2a1
loguru~=0.6.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name = 'ep-sphere_mesh',
version = '0.0.2',
version = '0.0.3',
description = 'A ChRIS ds plugin wrapper for sphere_mesh',
author = 'Jennings Zhang',
author_email = 'Jennings.Zhang@childrens.harvard.edu',
Expand Down
2 changes: 1 addition & 1 deletion sphere_mesh_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def main(options: Namespace, inputdir: Path, outputdir: Path):

results = []
with ThreadPoolExecutor(max_workers=len(os.sched_getaffinity(0))) as pool:
mapper = PathMapper(inputdir, outputdir, glob=options.pattern, suffix='.obj')
mapper = PathMapper.file_mapper(inputdir, outputdir, glob=options.pattern, suffix='.obj')
for mnc, obj in mapper:
results.append(pool.submit(sphere_mesh_wrapper, mnc, obj, options.side))

Expand Down

0 comments on commit d62894f

Please # to comment.