File tree 2 files changed +20
-0
lines changed 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ 0.4.1 / 2018-10-18
5
+ ------------------
6
+
7
+ - Handle worker restart with clearer message (:pr: `138 `)
8
+ - Better error handling on job submission failure (:pr: `146 `)
9
+ - Fixed Python 2.7 error when starting workers (:pr: `155 `)
10
+ - Better handling of extra scheduler options (:pr: `160 `)
11
+ - Correct testing of Python 2.7 compatibility (:pr: `154 `)
12
+ - Add ability to override python used to start workers (:pr: `167 `)
13
+ - Internal improvements and edge cases handling (:pr: `97 `)
14
+ - Possibility to specify a folder to store every job logs file (:pr: `145 `)
15
+ - Require all cores on the same node for LSF (:pr: `177 `)
16
+
4
17
0.4.0 / 2018-09-06
5
18
------------------
6
19
Original file line number Diff line number Diff line change 186
186
'distributed' : ('https://distributed.dask.org/en/stable/' ,
187
187
'https://distributed.dask.org/en/stable/objects.inv' )
188
188
}
189
+
190
+ # Link to GitHub issues and pull requests using :pr:`1234` and :issue:`1234`
191
+ # syntax
192
+ extlinks = {
193
+ 'issue' : ('https://github.com/dask/dask-jobqueue/issues/%s' , 'GH#' ),
194
+ 'pr' : ('https://github.com/dask/dask-jobqueue/pull/%s' , 'GH#' )
195
+ }
You can’t perform that action at this time.
0 commit comments