Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Latest master from upstream #7

Merged
merged 68 commits into from Feb 6, 2016
Merged

Commits on Nov 16, 2015

  1. MAINT add coveralls

    lesteve committed Nov 16, 2015
    Copy the full SHA
    1b876d1 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    1ffc193 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    484405c View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2015

  1. Make joblib.Parallel more robust to custom exceptions

    raised in the worker processes.
    lesteve committed Nov 23, 2015
    Copy the full SHA
    7606940 View commit details
    Browse the repository at this point in the history
  2. Do not swallow PicklingError during hash

    Also added assert_raises_regex in joblib.testing
    lesteve committed Nov 23, 2015
    Copy the full SHA
    1ab9e88 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2015

  1. TST doctests fix on Windows

    lesteve committed Nov 24, 2015
    Copy the full SHA
    f14822a View commit details
    Browse the repository at this point in the history
  2. MAINT remove unnecessary if clause

    inspect.getargspec returns a named tuple already in Python 2.6
    lesteve committed Nov 24, 2015
    Copy the full SHA
    d008eaa View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2015

  1. TST fix 32 bit failures in test_hashing

    Use f4 arrays to avoid hashes difference between 32bit and 64bit on Linux.
    Hashes were recomputed using 0.9.3
    lesteve committed Nov 25, 2015
    Copy the full SHA
    002d6f0 View commit details
    Browse the repository at this point in the history
  2. MAINT remove unnecessary tested object and hash

    It is already tested in test_hashes_stay_the_same
    lesteve committed Nov 25, 2015
    Copy the full SHA
    1197ae7 View commit details
    Browse the repository at this point in the history
  3. MAINT use TransportableException rather than MyClass in test

    to ensure that running the test from another path does not change the hash.
    The reason that the hash changes is that the fully qualified name of MyClass
    can vary depending on test_hashing.py path.
    lesteve committed Nov 25, 2015
    Copy the full SHA
    cc102d3 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2015

  1. Merge pull request #270 from lesteve/parallel-exception-handling

    [MRG] Make joblib.Parallel more robust to custom exceptions
    lesteve committed Nov 26, 2015
    Copy the full SHA
    6628016 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #277 from lesteve/raise-exception-for-pickling-err…

    …ors-during-hash
    
    [MRG] Do not swallow PicklingError during hash
    lesteve committed Nov 26, 2015
    Copy the full SHA
    88c8d23 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    cd69e20 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    1b751b2 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2015

  1. Use explicit dtype endianness in test_joblib_pickle_across_python_ver…

    …sions
    
    since the test pickles can be generated on one architecture and the
    tests run on another one. Also amended expected_list in
    test_compressed_pickle_dump_and_load for consistency.
    lesteve committed Nov 27, 2015
    Copy the full SHA
    756053f View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    5b7741b View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2015

  1. Copy the full SHA
    96d2c59 View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2015

  1. Add test for check_subprocess_call timeout

    Move test into separate function and use repr in format
    for better error message
    lesteve committed Dec 16, 2015
    Copy the full SHA
    b0ce331 View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2015

  1. FIX test on AppVeyor

    lesteve committed Dec 17, 2015
    Copy the full SHA
    176e378 View commit details
    Browse the repository at this point in the history

Commits on Dec 24, 2015

  1. Clarify Gotchas section

    mrefish committed Dec 24, 2015
    Copy the full SHA
    d06d7de View commit details
    Browse the repository at this point in the history
  2. Fix typo in __init__.py

    kylepjohnson committed Dec 24, 2015
    Copy the full SHA
    ce215c3 View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2015

  1. Copy the full SHA
    0f4890b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #288 from mrefish/patch-1

    Clarify Gotchas section
    GaelVaroquaux committed Dec 25, 2015
    Copy the full SHA
    9fa249f View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2015

  1. Merge pull request #290 from svisser/patch-1

    [MRG+1] Avoid use of sys.version for version checks
    ogrisel committed Dec 31, 2015
    Copy the full SHA
    94718e0 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2016

  1. Merge pull request #289 from kylepjohnson/master

    [MRG+1] Fix typo in __init__.py
    lesteve committed Jan 4, 2016
    Copy the full SHA
    f0c6ace View commit details
    Browse the repository at this point in the history
  2. Merge pull request #282 from lesteve/parallel-test-with-interactively…

    …-defined-functions
    
    [MRG+1] Add test for Parallel with interactively defined function
    lesteve committed Jan 4, 2016
    Copy the full SHA
    f349405 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    a8888ba View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    c32a112 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    40ecfb6 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2016

  1. Fix Parallel hanging with exhausted iterator

    Add test and entry in CHANGES.rst
    lesteve committed Jan 6, 2016
    Copy the full SHA
    2c3b2ad View commit details
    Browse the repository at this point in the history
  2. Merge pull request #293 from lesteve/fix-parallel-empty-iterator

    [MRG] Fix Parallel hanging with exhausted iterator
    lesteve committed Jan 6, 2016
    Copy the full SHA
    1e3a1e3 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    e769410 View commit details
    Browse the repository at this point in the history
  4. TRAVIS use numpy 1.10

    now that numpy 1.10.2 has been released which fixes a doctest failure in parallel_numpy.rst
    lesteve committed Jan 6, 2016
    Copy the full SHA
    191d44a View commit details
    Browse the repository at this point in the history
  5. Merge pull request #291 from aabadie/fix_documentation

    DOC fixing wording in documentation
    lesteve committed Jan 6, 2016
    Copy the full SHA
    3184dcb View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2016

  1. Add section in CHANGES.rst

    about #262 fix
    lesteve committed Jan 7, 2016
    Copy the full SHA
    a8dd119 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2016

  1. Copy the full SHA
    1505c1b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #296 from ogrisel/fix-deadlock

    [MRG] deadlock between async dispatch and exception handling
    lesteve committed Jan 13, 2016
    Copy the full SHA
    c60d263 View commit details
    Browse the repository at this point in the history
  3. Do not use inspect.getargspec

    which is deprecated and raises an Exception with functions that use
    signature or keyword-only argument.
    lesteve committed Jan 13, 2016
    Copy the full SHA
    c16de7a View commit details
    Browse the repository at this point in the history
  4. Merge pull request #283 from lesteve/replace-get-argspec

    [MRG+1] Replace inspect.getargspec usages
    ogrisel committed Jan 13, 2016
    Copy the full SHA
    ebb0f19 View commit details
    Browse the repository at this point in the history
  5. Move definition of PY3_OR_LATER to _compat.py

    so that it is only defined once.
    
    Fix unused imports and import order while I was a it.
    lesteve committed Jan 13, 2016
    Copy the full SHA
    04f9ba1 View commit details
    Browse the repository at this point in the history
  6. COSMIT fix some PEP8 horizontal misalignments

    and a redefinition
    lesteve committed Jan 13, 2016
    Copy the full SHA
    43bbf32 View commit details
    Browse the repository at this point in the history
  7. Use _compat.PY3_OR_LATER where possible

    rather than comparison with sys.version_info[0]
    lesteve committed Jan 13, 2016
    Copy the full SHA
    6e7eee8 View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2016

  1. Copy the full SHA
    2a07fec View commit details
    Browse the repository at this point in the history
  2. add entry in changelog

    aabadie committed Jan 14, 2016
    Copy the full SHA
    9db8607 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #286 from aabadie/fix_hashing

    FIX: fixing hashing with mixed dtype + test
    lesteve committed Jan 14, 2016
    Copy the full SHA
    4a9c63d View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    8843fd9 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #297 from lesteve/fix-mk-exception-for-non-inherit…

    …able-exceptions
    
    [MRG+1] Fix my_exceptions._mk_exception when input exception is not inheritable
    lesteve committed Jan 14, 2016
    Copy the full SHA
    8e679d8 View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    89c3dbf View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2016

  1. Copy the full SHA
    e3d084d View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    a6a0d26 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    70330b3 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    552c514 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #294 from ogrisel/fix-auto-memmap-gc-failure

    [MRG] Fix auto memmap gc failure
    ogrisel committed Jan 18, 2016
    Copy the full SHA
    b6af20c View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    d10eb32 View commit details
    Browse the repository at this point in the history
  7. Release 0.9.4

    ogrisel committed Jan 18, 2016
    Copy the full SHA
    6f5906f View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2016

  1. Copy the full SHA
    72e1625 View commit details
    Browse the repository at this point in the history
  2. FIX typos

    ogrisel committed Jan 19, 2016
    Copy the full SHA
    edf5fa4 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    5a4c6c4 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #301 from aabadie/fix_docstring

    DOC Fix redundant word in docstring
    lesteve committed Jan 19, 2016
    Copy the full SHA
    221f717 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    eaf4ccb View commit details
    Browse the repository at this point in the history
  6. Merge pull request #303 from aabadie/fix_imported_but_unsued

    FIX imported but unused module
    lesteve committed Jan 19, 2016
    Copy the full SHA
    50fc5d8 View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    e8b5add View commit details
    Browse the repository at this point in the history
  8. Merge pull request #304 from aabadie/fix_imported_but_unused

    FIX imported but unused + pep8
    ogrisel committed Jan 19, 2016
    Copy the full SHA
    2598114 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2016

  1. DOC fixing docstrings

    aabadie committed Jan 20, 2016
    Copy the full SHA
    594c7ab View commit details
    Browse the repository at this point in the history
  2. applying comments

    aabadie committed Jan 20, 2016
    Copy the full SHA
    23a8691 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #302 from aabadie/fix_docstring2

    DOC fixing docstrings
    lesteve committed Jan 20, 2016
    Copy the full SHA
    b72877b View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2016

  1. Copy the full SHA
    e7ea057 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #307 from lesteve/add-travis-flake8

    [MRG] add flake8 linting of diffs in Travis
    aabadie committed Feb 4, 2016
    Copy the full SHA
    18fb5f3 View commit details
    Browse the repository at this point in the history