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

MAINT: Backports for 1.4.0rc2 #11161

Merged
merged 26 commits into from
Dec 7, 2019

Commits on Dec 2, 2019

  1. REL: set version to 1.4.0rc2

    * set version to 1.4.0rc2 unreleased
    tylerjereddy committed Dec 2, 2019
    Configuration menu
    Copy the full SHA
    e08a742 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ed7c6ca View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2578840 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ac0429b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    706f8db View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    78debee View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d521c00 View commit details
    Browse the repository at this point in the history
  8. MAINT: Remove docstring of deprecated match_vectors

    It is causing some errors in documentation build due to unused references
    nmayorov authored and tylerjereddy committed Dec 2, 2019
    Configuration menu
    Copy the full SHA
    dd3603c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a2b1c5e View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    67051f3 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    42e2501 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    5376c2c View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    5e506a2 View commit details
    Browse the repository at this point in the history
  14. add missing types to _stats.pyx

    change a few size/index related variables from int -> int_p
    
    disable wraparound and boundscheck in a few other places
    grlee77 authored and tylerjereddy committed Dec 2, 2019
    Configuration menu
    Copy the full SHA
    0ab95d4 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    93476e6 View commit details
    Browse the repository at this point in the history
  16. BUG: interpolate/fitpack: fix leak in splprep for task!=0

    This is the non-default code path, not realised usually.
    pv authored and tylerjereddy committed Dec 2, 2019
    Configuration menu
    Copy the full SHA
    d5ec41c View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    887b8f9 View commit details
    Browse the repository at this point in the history
  18. FIX: Avoid potential segfault when slicing CSR or CSC matrices

    The issue could occur for CSR matrices with row start index > stop index.
    
    This fixes the same issue for column slice of CSC matrices.
    grlee77 authored and tylerjereddy committed Dec 2, 2019
    Configuration menu
    Copy the full SHA
    11d1a1d View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    531eda9 View commit details
    Browse the repository at this point in the history
  20. MAINT: PR 11127 reviewer adjustments

    * add out-of-bounds and invalid sparse
    indexing test cases requested by reviewer
    
    * adjust compressed.py source code such
    that start index > stop index case now returns
    an empty object (of same class as input)
    tylerjereddy committed Dec 2, 2019
    Configuration menu
    Copy the full SHA
    23f1fc0 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    d5fe396 View commit details
    Browse the repository at this point in the history
  22. DOC: update 1.4.0 release notes

    * account for backported PRs: 11081,
    11096, 11124, 11126, 11127
    tylerjereddy committed Dec 2, 2019
    Configuration menu
    Copy the full SHA
    dee48db View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2019

  1. BUG: Fix random state bug multiscale_graphcorr (scipy#11152)

    * BUG: Fix random state bug multiscale_graphcorr
    
    * BUG: Fix index error in multiscale_graphcorr
    
    * BUG: fix nonetype exception
    
    * ENH: Remove workers dependence for random_state in multiscale_graphcorr
    
    * MAIN: Move random state keyword to end of parameter list
    
    * MAIN: change list comprehension so it is more clear
    
    * MAIN: fix typo in seed parameter
    
    * ENH: Change seed generation in multiscale_graphcorr
    
    * DOC: Use random_state keyword in example
    
    * MAIN: Add whitespace around bitwise operator
    sampan501 authored and tylerjereddy committed Dec 4, 2019
    Configuration menu
    Copy the full SHA
    f01bab4 View commit details
    Browse the repository at this point in the history
  2. BUG: empty sparse slice shapes (scipy#11166)

    * BUG: empty sparse slice shapes
    
    * CSC and CSR sparse matrix slices
    that return empty matrices should
    now correctly preserve a shape
    of (0, original_shape[1])
    
    * refactor _process_slice
    
    replace use of 'empty' with i0=i1 which gives an empty slice
    this will keep the existing logic for shape handling
    
    * TST: add additional CSR and CSC slicing test cases
    tylerjereddy committed Dec 4, 2019
    Configuration menu
    Copy the full SHA
    e92afbd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b61c951 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2019

  1. DOC: update 1.4.0 release notes

    * update 1.4.0 release notes to reflect
    backported PRs: 11152, 11166, 11167
    
    * remove a redundant mention of multiscale_graphcorr
    in the release notes and improve spacing around the original
    mention of multiscale_graphcorr
    tylerjereddy committed Dec 7, 2019
    Configuration menu
    Copy the full SHA
    7bd5ad6 View commit details
    Browse the repository at this point in the history