File tree Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1- Upcoming release ( 1.0.0)
1+ 1.0.0 (January 24, 2018 )
22========================
33
4+ ###### [Full changelog](https://github.com/nipy/nipype/milestone/16?closed=1)
5+
46* FIX: PBS plugin submissions (https://github.com/nipy/nipype/pull/2344)
57* FIX: Graph plugins submissions (https://github.com/nipy/nipype/pull/2359)
68* FIX: Logging error if % in interface command (https://github.com/nipy/nipype/pull/2364)
@@ -22,6 +24,7 @@ Upcoming release (1.0.0)
2224* STY: Cleanup of PEP8 violations (https://github.com/nipy/nipype/pull/2358)
2325* STY: Cleanup of trailing spaces and adding of missing newlines at end of files (https://github.com/nipy/nipype/pull/2355)
2426* STY: Apply yapf to codebase (https://github.com/nipy/nipype/pull/2371)
27+ * DOC: Updated guide for contributing (https://github.com/nipy/nipype/pull/2393)
2528
26290.14.0 (November 29, 2017)
2730==========================
Original file line number Diff line number Diff line change 8282# The short X.Y version.
8383version = nipype .__version__
8484# The full version, including alpha/beta/rc tags.
85- release = "0.14 .0"
85+ release = "1.0 .0"
8686
8787# The language for content autogenerated by Sphinx. Refer to documentation
8888# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Documentation
99 :Release: |version |
1010 :Date: |today |
1111
12- Previous versions: `0.13.1 <http://nipype.readthedocs.io/en/0.13.1 / >`_ `0.12 .1 <http://nipype.readthedocs.io/en/0.12 .1/ >`_
12+ Previous versions: `0.14.0 <http://nipype.readthedocs.io/en/v0.14.0 / >`_ `0.13 .1 <http://nipype.readthedocs.io/en/0.13 .1/ >`_
1313
1414
1515.. container :: doc2
Original file line number Diff line number Diff line change 1111# full release. '.dev' as a version_extra string means this is a development
1212# version
1313# Remove -dev for release
14- __version__ = '0.14.1-dev '
14+ __version__ = '1.0.0 '
1515
1616
1717def get_nipype_gitversion ():
Original file line number Diff line number Diff line change @@ -57,9 +57,9 @@ def _is_pending(self, taskid):
5757
5858 stdout = result .runtime .stdout
5959 stderr = result .runtime .stderr
60- errmsg = 'Unknown Job Id'
60+ errmsg = 'Unknown Job Id'
6161 success = 'Job has finished'
62- if (success in stderr ) or ('job_state = C' in stdout ):
62+ if (success in stderr ) or ('job_state = C' in stdout ):
6363 return False
6464 else :
6565 return errmsg not in stderr
You can’t perform that action at this time.
0 commit comments