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

Meta python merge 04/15/2021 #339

Closed
wants to merge 8 commits into from
Closed

Meta python merge 04/15/2021 #339

wants to merge 8 commits into from

Commits on Apr 15, 2021

  1. python3-pyroute2: Upgrade 0.5.17 -> 0.5.18

    Upgrade to release 0.5.18:
    
    - netlink: support zero length lladdr
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed Apr 15, 2021
    Configuration menu
    Copy the full SHA
    dae8a46 View commit details
    Browse the repository at this point in the history
  2. python3-sympy: Upgrade 1.7.1 -> 1.8

    Upgrade to release 1.8:
    
    assumptions:
    
    - Q.infinite now correctly evaluates to True for oo, -oo, and zoo
    - Assumption predicates now correctly evaluates to None for S.NaN
    - Relational objects do not need to be wrapped by Q.is_true to be
      asked or refined anymore
    - Q.is_true wrapping over AppliedPredicate now just return the
      argument
    - refine arg(x) when x is real and nonzero
    - assumptions/relation module is introduced. This module
      implements binary relation as predicate
    - AskHandler(), register_handler() and remove_handler() are
      deprecated. Handler now must be multipledispatch instance
    - Predicate now uses a single handler which is multipledispatch
      instance
    - Predicate can now take multiple arguments
    - Predicate("...") now returns UndefinedPredicate instance. To
      define a predicate, you must make a subclass of Predicate
    
    calculus:
    
    - Using maximum with a piecewise expression over a domain no
      longer fails due to a bug fix in Piecewise.as_expr_set_pairs
    
    codegen:
    
    - allowing for multi-dimensional arrays as arguments/locals in c
      code generation
    - create_expand_pow_optimization is now customizable with respect
      to requirement on base
    - Support flattening of elementwise additions of array expressions
    - Fixes to array-expressions in order to properly work with
      ZeroArray and ZeroMatrix
    - Fixing matrix expression recognition from array-expressions
    - Minor fixes to the way the AST of array expressions is built
    - Add normalization of CodegenArrayDiagonal when it's nested with
      CodegenArrayPermuteDims and CodegenArrayContraction
    - Increased support for the normalization of array expressions and
      permutations of indices
    - parse_matrix_expression( ) is now able to parse traces of
      matrices
    
    combinatorics:
    
    - Added a section to the permutation docs about containment in
      permutation groups
    
    geometry:
    
    - Fix AssertError for vertical tangent
    - Geometric entities with symbolic coordinates will not be printed
      in SVG
    
    simplify:
    
    - Fix simplify calls sympify without rational parameter
    - TRmorrie now takes powers of cos terms into account
    
    tensor:
    
    - Introduced objects ArraySymbol and ArrayElement for array
      expressions equivalent to MatrixSymbol and MatrixElement in the
      matrix expression module
    - Add class ZeroArray for array expressions of zero-valued
      elements
    - Make Array differentiation(derive_by_array) work with non sympy
      expressions
    - Added tensordiagonal( ) function to perform diagonalization of
      array expressions
    - Adding an array with any other type now consistently gives
      NotImplemented
    
    utilities:
    
    - Added official support for using CuPy to GPU accelerate lambdify
      functions
    - Added Replacer class to simplify the creation of replacement
      expressions with MatchPy
    - Added tests for optional parameter in MatchPy patterns
    - Added string printers for MatchPy-compatible wildcards in
      sympy.utilities.matchpy_connector
    - minlex no longer accepts is_set or small arguments
    - minlex and least_rotation now accept key= arguments similar to
      sorted
    
    vector:
    
    - Fixed a bug with integral over ImplicitRegion objects
    
    other:
    
    - Expanding documentation to include all class members with
      docstrings
    
    License-Update: Update year
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed Apr 15, 2021
    Configuration menu
    Copy the full SHA
    9102f03 View commit details
    Browse the repository at this point in the history
  3. python3-pandas: Upgrade 1.2.3 -> 1.2.4

    Upgrade to release 1.2.4:
    
    - Fixed regression in DataFrame.sum() when min_count greater than
      the DataFrame shape was passed resulted in a ValueError
    - Fixed regression in DataFrame.to_json() raising AttributeError
      when run on PyPy
    - Fixed regression in (in)equality comparison of pd.NaT with a
      non-datetimelike numpy array returning a scalar instead of an
      array
    - Fixed regression in DataFrame.where() not returning a copy in
      the case of an all True condition
    - Fixed regression in DataFrame.replace() raising IndexError when
      regex was a multi-key dictionary
    - Fixed regression in repr of floats in an object column not
      respecting float_format when printed in the console or outputted
      through DataFrame.to_string(), DataFrame.to_html(), and
      DataFrame.to_latex()
    - Fixed regression in NumPy ufuncs such as np.add not passing
      through all arguments for DataFrame
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed Apr 15, 2021
    Configuration menu
    Copy the full SHA
    c2dd63c View commit details
    Browse the repository at this point in the history
  4. python3-humanize: Upgrade 3.4.0 -> 3.4.1

    Upgrade to release 3.4.1:
    
    - Add Catalan binary translation
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed Apr 15, 2021
    Configuration menu
    Copy the full SHA
    214dcf9 View commit details
    Browse the repository at this point in the history
  5. python3-decorator: Upgrade 5.0.6 -> 5.0.7

    Upgrade to release 5.0.7:
    
    - The decorator module was not passing correctly the defaults
      inside the *args tuple
    - Fixed some mispellings in the documentation
    - Integrated codespell in the CI
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed Apr 15, 2021
    Configuration menu
    Copy the full SHA
    1b164ec View commit details
    Browse the repository at this point in the history
  6. python3-colorlog: Upgrade 4.8.0 -> 5.0.1

    Upgrade to release 5.0.1:
    
    - Fix colorlog.basicConfig does not accept '{' style
    - Fix linter errors
    
    License-Update: Update year
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed Apr 15, 2021
    Configuration menu
    Copy the full SHA
    c370788 View commit details
    Browse the repository at this point in the history
  7. python3-google-api-python-client: Upgrade 2.1.0 -> 2.2.0

    Upgrade to release 2.2.0:
    
    - Adds support for errors.py to also use 'errors' for error_details
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed Apr 15, 2021
    Configuration menu
    Copy the full SHA
    00bc032 View commit details
    Browse the repository at this point in the history
  8. python3-croniter: Upgrade 1.0.11 -> 1.0.12

    Upgrade to release 1.0.12:
    
    - Add support for hashed/random/keyword expressions
    - Review support support for hashed/random/keyword expression and
      add expanders reactor
    
    Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
    Signed-off-by: Khem Raj <raj.khem@gmail.com>
    Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
    leon-anavi authored and Trevor Gamblin committed Apr 15, 2021
    Configuration menu
    Copy the full SHA
    dbec97f View commit details
    Browse the repository at this point in the history