Skip to content

Commit 433b20b

Browse files
committed
fix typo
1 parent 4f6bca7 commit 433b20b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

nextflowspawner/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class NextflowSpawner(LocalProcessSpawner):
1515
default_url = Unicode('/nextflow', help="The entrypoint for https://github.com/phue/jupyter-nextflow-proxy")
1616

1717
workflow_url = Unicode(config=True, help="The url of the pipeline repository.")
18-
workflow_revison = Unicode('main', config=True, help="The revision of the pipeline repository.")
18+
workflow_revision = Unicode('main', config=True, help="The revision of the pipeline repository.")
1919

2020
home_dir = Unicode(help="The user home directory")
2121

@@ -162,6 +162,6 @@ def get_env(self):
162162
env = super().get_env()
163163
env['NXF_HOME'] = self.nxf_home
164164
env['NXF_USER_WORKFLOW'] = self.workflow_url
165-
env['NXF_USER_REVISION'] = self.workflow_revision
165+
env['NXF_USER_revision'] = self.workflow_revision
166166
env['NXF_USER_PARAMS'] = self._write_params_file(self.user_options)
167167
return env

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setuptools.setup(
44
name="nextflowspawner",
5-
version='0.7.0',
5+
version='0.7.1',
66
url="https://github.com/phue/nextflowspawner",
77
description="Spawn Nextflow pipelines from Jupyterhub and configure them interactively",
88
author="Patrick Hüther",

0 commit comments

Comments
 (0)