File tree 5 files changed +9
-6
lines changed
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 )
2
2
========================
3
3
4
+ ###### [Full changelog](https://github.com/nipy/nipype/milestone/16?closed=1)
5
+
4
6
* FIX: PBS plugin submissions (https://github.com/nipy/nipype/pull/2344)
5
7
* FIX: Graph plugins submissions (https://github.com/nipy/nipype/pull/2359)
6
8
* FIX: Logging error if % in interface command (https://github.com/nipy/nipype/pull/2364)
@@ -22,6 +24,7 @@ Upcoming release (1.0.0)
22
24
* STY: Cleanup of PEP8 violations (https://github.com/nipy/nipype/pull/2358)
23
25
* STY: Cleanup of trailing spaces and adding of missing newlines at end of files (https://github.com/nipy/nipype/pull/2355)
24
26
* 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)
25
28
26
29
0.14.0 (November 29, 2017)
27
30
==========================
Original file line number Diff line number Diff line change 82
82
# The short X.Y version.
83
83
version = nipype .__version__
84
84
# The full version, including alpha/beta/rc tags.
85
- release = "0.14 .0"
85
+ release = "1.0 .0"
86
86
87
87
# The language for content autogenerated by Sphinx. Refer to documentation
88
88
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Documentation
9
9
:Release: |version |
10
10
:Date: |today |
11
11
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/ >`_
13
13
14
14
15
15
.. container :: doc2
Original file line number Diff line number Diff line change 11
11
# full release. '.dev' as a version_extra string means this is a development
12
12
# version
13
13
# Remove -dev for release
14
- __version__ = '0.14.1-dev '
14
+ __version__ = '1.0.0 '
15
15
16
16
17
17
def get_nipype_gitversion ():
Original file line number Diff line number Diff line change @@ -57,9 +57,9 @@ def _is_pending(self, taskid):
57
57
58
58
stdout = result .runtime .stdout
59
59
stderr = result .runtime .stderr
60
- errmsg = 'Unknown Job Id'
60
+ errmsg = 'Unknown Job Id'
61
61
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 ):
63
63
return False
64
64
else :
65
65
return errmsg not in stderr
You can’t perform that action at this time.
0 commit comments