pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/math/py-sympy math/py-sympy: Update to 1.5
details: https://anonhg.NetBSD.org/pkgsrc/rev/7e4d9f010a43
branches: trunk
changeset: 410032:7e4d9f010a43
user: minskim <minskim%pkgsrc.org@localhost>
date: Fri Jan 24 16:20:24 2020 +0000
description:
math/py-sympy: Update to 1.5
Breaking changes:
- Deprecate is_EmptySet in favor of is_empty.
- Lambda now requires a tuple rather than a list for the signature
argument (non-tuple iterables are deprecated)
- Eq(expr) now raises ValueError. Eq(expr, 0) should be used
instead.
- Refactory of the units module. Scale factors and dimensions are now
both global and relative to single unit systems.
- get_dixon_matrix() now computes only the necessary monomials for the
Dixon matrix.
- The ProductSet of no sets is no longer the empty set. Instead is the
set consisting of the empty tuple.
- Deprecated tensorhead() and tensorsymmetry() static methods.
- Rational, irrational, transcendental and algebraic now imply finite
in the assumptions system. This means that all symbols declared as
rational, integer, odd etc are now automatically assumed finite.
- In the (old) assumptions, complex=True now implies finite=True. Note
that the default assumption for Symbol is complex=None, which allows
for the possibility for it to be infinite.
- The assumptions system is changed so that only finite numbers can be
considered real, positive, negative, nonnegative, nonpositive or
nonzero (since nonzero implies real). This means that any symbol
declared with e.g. real=True is now automatically considered
finite. It also means that infinities can not be considered positive
or negative since they are not real (e.g. oo.is_positive is now
False).
- New assumptions extended_real, extended_positive etc are added that
allow for positive and negative infinity. The equivalent of
Symbol('x', real=True) in version 1.4 is now Symbol('x',
extended_real=True). The equivalent of Symbol('x', negative=False)
is now Symbol('x', extended_negative=False) although it is usually
better to use Symbol('x', nonnegative=True) (which implies both
real=True and finite=True as well). Code that previously checked if
x.is_positive should now be written as if x.is_extended_positive if
it is intended that infinities should be allowed.
- Numbers still compare the same as they do in Python (Float(1) == 1)
except when they appear in an Expression, e.g. x**2.0 != x**2
diffstat:
math/py-sympy/Makefile | 4 +-
math/py-sympy/PLIST | 150 ++++++++++++++++++++++++++++++++++++++++++++++--
math/py-sympy/distinfo | 10 +-
3 files changed, 150 insertions(+), 14 deletions(-)
diffs (truncated from 444 to 300 lines):
diff -r 7d38ec1d953a -r 7e4d9f010a43 math/py-sympy/Makefile
--- a/math/py-sympy/Makefile Fri Jan 24 16:18:26 2020 +0000
+++ b/math/py-sympy/Makefile Fri Jan 24 16:20:24 2020 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.22 2020/01/15 19:13:06 minskim Exp $
+# $NetBSD: Makefile,v 1.23 2020/01/24 16:20:24 minskim Exp $
-DISTNAME= sympy-1.4
+DISTNAME= sympy-1.5
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= math python
MASTER_SITES= ${MASTER_SITE_PYPI:=s/sympy/}
diff -r 7d38ec1d953a -r 7e4d9f010a43 math/py-sympy/PLIST
--- a/math/py-sympy/PLIST Fri Jan 24 16:18:26 2020 +0000
+++ b/math/py-sympy/PLIST Fri Jan 24 16:20:24 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.17 2020/01/15 19:13:06 minskim Exp $
+@comment $NetBSD: PLIST,v 1.18 2020/01/24 16:20:24 minskim Exp $
bin/isympy${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -40,6 +40,9 @@
${PYSITELIB}/sympy/assumptions/assume.py
${PYSITELIB}/sympy/assumptions/assume.pyc
${PYSITELIB}/sympy/assumptions/assume.pyo
+${PYSITELIB}/sympy/assumptions/cnf.py
+${PYSITELIB}/sympy/assumptions/cnf.pyc
+${PYSITELIB}/sympy/assumptions/cnf.pyo
${PYSITELIB}/sympy/assumptions/handlers/__init__.py
${PYSITELIB}/sympy/assumptions/handlers/__init__.pyc
${PYSITELIB}/sympy/assumptions/handlers/__init__.pyo
@@ -187,6 +190,9 @@
${PYSITELIB}/sympy/codegen/futils.py
${PYSITELIB}/sympy/codegen/futils.pyc
${PYSITELIB}/sympy/codegen/futils.pyo
+${PYSITELIB}/sympy/codegen/matrix_nodes.py
+${PYSITELIB}/sympy/codegen/matrix_nodes.pyc
+${PYSITELIB}/sympy/codegen/matrix_nodes.pyo
${PYSITELIB}/sympy/codegen/pyutils.py
${PYSITELIB}/sympy/codegen/pyutils.pyc
${PYSITELIB}/sympy/codegen/pyutils.pyo
@@ -223,6 +229,9 @@
${PYSITELIB}/sympy/codegen/tests/test_fnodes.py
${PYSITELIB}/sympy/codegen/tests/test_fnodes.pyc
${PYSITELIB}/sympy/codegen/tests/test_fnodes.pyo
+${PYSITELIB}/sympy/codegen/tests/test_pyutils.py
+${PYSITELIB}/sympy/codegen/tests/test_pyutils.pyc
+${PYSITELIB}/sympy/codegen/tests/test_pyutils.pyo
${PYSITELIB}/sympy/codegen/tests/test_rewriting.py
${PYSITELIB}/sympy/codegen/tests/test_rewriting.pyc
${PYSITELIB}/sympy/codegen/tests/test_rewriting.pyo
@@ -256,6 +265,9 @@
${PYSITELIB}/sympy/combinatorics/partitions.py
${PYSITELIB}/sympy/combinatorics/partitions.pyc
${PYSITELIB}/sympy/combinatorics/partitions.pyo
+${PYSITELIB}/sympy/combinatorics/pc_groups.py
+${PYSITELIB}/sympy/combinatorics/pc_groups.pyc
+${PYSITELIB}/sympy/combinatorics/pc_groups.pyo
${PYSITELIB}/sympy/combinatorics/perm_groups.py
${PYSITELIB}/sympy/combinatorics/perm_groups.pyc
${PYSITELIB}/sympy/combinatorics/perm_groups.pyo
@@ -310,6 +322,9 @@
${PYSITELIB}/sympy/combinatorics/tests/test_partitions.py
${PYSITELIB}/sympy/combinatorics/tests/test_partitions.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_partitions.pyo
+${PYSITELIB}/sympy/combinatorics/tests/test_pc_groups.py
+${PYSITELIB}/sympy/combinatorics/tests/test_pc_groups.pyc
+${PYSITELIB}/sympy/combinatorics/tests/test_pc_groups.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.py
${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.pyo
@@ -568,6 +583,9 @@
${PYSITELIB}/sympy/core/tests/test_match.py
${PYSITELIB}/sympy/core/tests/test_match.pyc
${PYSITELIB}/sympy/core/tests/test_match.pyo
+${PYSITELIB}/sympy/core/tests/test_multidimensional.py
+${PYSITELIB}/sympy/core/tests/test_multidimensional.pyc
+${PYSITELIB}/sympy/core/tests/test_multidimensional.pyo
${PYSITELIB}/sympy/core/tests/test_noncommutative.py
${PYSITELIB}/sympy/core/tests/test_noncommutative.pyc
${PYSITELIB}/sympy/core/tests/test_noncommutative.pyo
@@ -1055,9 +1073,6 @@
${PYSITELIB}/sympy/integrals/rubi/parsetools/tests/test_parse.py
${PYSITELIB}/sympy/integrals/rubi/parsetools/tests/test_parse.pyc
${PYSITELIB}/sympy/integrals/rubi/parsetools/tests/test_parse.pyo
-${PYSITELIB}/sympy/integrals/rubi/rubi.py
-${PYSITELIB}/sympy/integrals/rubi/rubi.pyc
-${PYSITELIB}/sympy/integrals/rubi/rubi.pyo
${PYSITELIB}/sympy/integrals/rubi/rubi_tests/__init__.py
${PYSITELIB}/sympy/integrals/rubi/rubi_tests/__init__.pyc
${PYSITELIB}/sympy/integrals/rubi/rubi_tests/__init__.pyo
@@ -1106,6 +1121,9 @@
${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_trinomials.py
${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_trinomials.pyc
${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_trinomials.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubimain.py
+${PYSITELIB}/sympy/integrals/rubi/rubimain.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubimain.pyo
${PYSITELIB}/sympy/integrals/rubi/rules/__init__.py
${PYSITELIB}/sympy/integrals/rubi/rules/__init__.pyc
${PYSITELIB}/sympy/integrals/rubi/rules/__init__.pyo
@@ -1352,6 +1370,9 @@
${PYSITELIB}/sympy/logic/algorithms/dpll2.py
${PYSITELIB}/sympy/logic/algorithms/dpll2.pyc
${PYSITELIB}/sympy/logic/algorithms/dpll2.pyo
+${PYSITELIB}/sympy/logic/algorithms/pycosat_wrapper.py
+${PYSITELIB}/sympy/logic/algorithms/pycosat_wrapper.pyc
+${PYSITELIB}/sympy/logic/algorithms/pycosat_wrapper.pyo
${PYSITELIB}/sympy/logic/boolalg.py
${PYSITELIB}/sympy/logic/boolalg.pyc
${PYSITELIB}/sympy/logic/boolalg.pyo
@@ -1765,6 +1786,18 @@
${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest9.py
${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest9.pyc
${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest9.pyo
+${PYSITELIB}/sympy/parsing/c/__init__.py
+${PYSITELIB}/sympy/parsing/c/__init__.pyc
+${PYSITELIB}/sympy/parsing/c/__init__.pyo
+${PYSITELIB}/sympy/parsing/c/c_parser.py
+${PYSITELIB}/sympy/parsing/c/c_parser.pyc
+${PYSITELIB}/sympy/parsing/c/c_parser.pyo
+${PYSITELIB}/sympy/parsing/fortran/__init__.py
+${PYSITELIB}/sympy/parsing/fortran/__init__.pyc
+${PYSITELIB}/sympy/parsing/fortran/__init__.pyo
+${PYSITELIB}/sympy/parsing/fortran/fortran_parser.py
+${PYSITELIB}/sympy/parsing/fortran/fortran_parser.pyc
+${PYSITELIB}/sympy/parsing/fortran/fortran_parser.pyo
${PYSITELIB}/sympy/parsing/latex/LICENSE.txt
${PYSITELIB}/sympy/parsing/latex/LaTeX.g4
${PYSITELIB}/sympy/parsing/latex/__init__.py
@@ -1794,6 +1827,9 @@
${PYSITELIB}/sympy/parsing/maxima.py
${PYSITELIB}/sympy/parsing/maxima.pyc
${PYSITELIB}/sympy/parsing/maxima.pyo
+${PYSITELIB}/sympy/parsing/sym_expr.py
+${PYSITELIB}/sympy/parsing/sym_expr.pyc
+${PYSITELIB}/sympy/parsing/sym_expr.pyo
${PYSITELIB}/sympy/parsing/sympy_parser.py
${PYSITELIB}/sympy/parsing/sympy_parser.pyc
${PYSITELIB}/sympy/parsing/sympy_parser.pyo
@@ -1803,6 +1839,12 @@
${PYSITELIB}/sympy/parsing/tests/test_autolev.py
${PYSITELIB}/sympy/parsing/tests/test_autolev.pyc
${PYSITELIB}/sympy/parsing/tests/test_autolev.pyo
+${PYSITELIB}/sympy/parsing/tests/test_c_parser.py
+${PYSITELIB}/sympy/parsing/tests/test_c_parser.pyc
+${PYSITELIB}/sympy/parsing/tests/test_c_parser.pyo
+${PYSITELIB}/sympy/parsing/tests/test_fortran_parser.py
+${PYSITELIB}/sympy/parsing/tests/test_fortran_parser.pyc
+${PYSITELIB}/sympy/parsing/tests/test_fortran_parser.pyo
${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.py
${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.pyc
${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.pyo
@@ -1818,6 +1860,9 @@
${PYSITELIB}/sympy/parsing/tests/test_maxima.py
${PYSITELIB}/sympy/parsing/tests/test_maxima.pyc
${PYSITELIB}/sympy/parsing/tests/test_maxima.pyo
+${PYSITELIB}/sympy/parsing/tests/test_sym_expr.py
+${PYSITELIB}/sympy/parsing/tests/test_sym_expr.pyc
+${PYSITELIB}/sympy/parsing/tests/test_sym_expr.pyo
${PYSITELIB}/sympy/parsing/tests/test_sympy_parser.py
${PYSITELIB}/sympy/parsing/tests/test_sympy_parser.pyc
${PYSITELIB}/sympy/parsing/tests/test_sympy_parser.pyo
@@ -1905,6 +1950,9 @@
${PYSITELIB}/sympy/physics/mechanics/tests/test_kane3.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_kane3.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_kane3.pyo
+${PYSITELIB}/sympy/physics/mechanics/tests/test_kane4.py
+${PYSITELIB}/sympy/physics/mechanics/tests/test_kane4.pyc
+${PYSITELIB}/sympy/physics/mechanics/tests/test_kane4.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.pyo
@@ -1935,6 +1983,9 @@
${PYSITELIB}/sympy/physics/optics/medium.py
${PYSITELIB}/sympy/physics/optics/medium.pyc
${PYSITELIB}/sympy/physics/optics/medium.pyo
+${PYSITELIB}/sympy/physics/optics/polarization.py
+${PYSITELIB}/sympy/physics/optics/polarization.pyc
+${PYSITELIB}/sympy/physics/optics/polarization.pyo
${PYSITELIB}/sympy/physics/optics/tests/__init__.py
${PYSITELIB}/sympy/physics/optics/tests/__init__.pyc
${PYSITELIB}/sympy/physics/optics/tests/__init__.pyo
@@ -1944,6 +1995,9 @@
${PYSITELIB}/sympy/physics/optics/tests/test_medium.py
${PYSITELIB}/sympy/physics/optics/tests/test_medium.pyc
${PYSITELIB}/sympy/physics/optics/tests/test_medium.pyo
+${PYSITELIB}/sympy/physics/optics/tests/test_polarization.py
+${PYSITELIB}/sympy/physics/optics/tests/test_polarization.pyc
+${PYSITELIB}/sympy/physics/optics/tests/test_polarization.pyo
${PYSITELIB}/sympy/physics/optics/tests/test_utils.py
${PYSITELIB}/sympy/physics/optics/tests/test_utils.pyc
${PYSITELIB}/sympy/physics/optics/tests/test_utils.pyo
@@ -2211,9 +2265,15 @@
${PYSITELIB}/sympy/physics/units/__init__.py
${PYSITELIB}/sympy/physics/units/__init__.pyc
${PYSITELIB}/sympy/physics/units/__init__.pyo
-${PYSITELIB}/sympy/physics/units/definitions.py
-${PYSITELIB}/sympy/physics/units/definitions.pyc
-${PYSITELIB}/sympy/physics/units/definitions.pyo
+${PYSITELIB}/sympy/physics/units/definitions/__init__.py
+${PYSITELIB}/sympy/physics/units/definitions/__init__.pyc
+${PYSITELIB}/sympy/physics/units/definitions/__init__.pyo
+${PYSITELIB}/sympy/physics/units/definitions/dimension_definitions.py
+${PYSITELIB}/sympy/physics/units/definitions/dimension_definitions.pyc
+${PYSITELIB}/sympy/physics/units/definitions/dimension_definitions.pyo
+${PYSITELIB}/sympy/physics/units/definitions/unit_definitions.py
+${PYSITELIB}/sympy/physics/units/definitions/unit_definitions.pyc
+${PYSITELIB}/sympy/physics/units/definitions/unit_definitions.pyo
${PYSITELIB}/sympy/physics/units/dimensions.py
${PYSITELIB}/sympy/physics/units/dimensions.pyc
${PYSITELIB}/sympy/physics/units/dimensions.pyo
@@ -2226,6 +2286,12 @@
${PYSITELIB}/sympy/physics/units/systems/__init__.py
${PYSITELIB}/sympy/physics/units/systems/__init__.pyc
${PYSITELIB}/sympy/physics/units/systems/__init__.pyo
+${PYSITELIB}/sympy/physics/units/systems/cgs.py
+${PYSITELIB}/sympy/physics/units/systems/cgs.pyc
+${PYSITELIB}/sympy/physics/units/systems/cgs.pyo
+${PYSITELIB}/sympy/physics/units/systems/length_weight_time.py
+${PYSITELIB}/sympy/physics/units/systems/length_weight_time.pyc
+${PYSITELIB}/sympy/physics/units/systems/length_weight_time.pyo
${PYSITELIB}/sympy/physics/units/systems/mks.py
${PYSITELIB}/sympy/physics/units/systems/mks.pyc
${PYSITELIB}/sympy/physics/units/systems/mks.pyo
@@ -2253,6 +2319,9 @@
${PYSITELIB}/sympy/physics/units/tests/test_quantities.py
${PYSITELIB}/sympy/physics/units/tests/test_quantities.pyc
${PYSITELIB}/sympy/physics/units/tests/test_quantities.pyo
+${PYSITELIB}/sympy/physics/units/tests/test_unit_system_cgs_gauss.py
+${PYSITELIB}/sympy/physics/units/tests/test_unit_system_cgs_gauss.pyc
+${PYSITELIB}/sympy/physics/units/tests/test_unit_system_cgs_gauss.pyo
${PYSITELIB}/sympy/physics/units/tests/test_unitsystem.py
${PYSITELIB}/sympy/physics/units/tests/test_unitsystem.pyc
${PYSITELIB}/sympy/physics/units/tests/test_unitsystem.pyo
@@ -2331,6 +2400,9 @@
${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.py
${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.pyc
${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.pyo
+${PYSITELIB}/sympy/plotting/intervalmath/interval_membership.py
+${PYSITELIB}/sympy/plotting/intervalmath/interval_membership.pyc
+${PYSITELIB}/sympy/plotting/intervalmath/interval_membership.pyo
${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.py
${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.pyc
${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.pyo
@@ -2340,6 +2412,9 @@
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.py
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.pyc
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.pyo
+${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_membership.py
+${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_membership.pyc
+${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_membership.pyo
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.py
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.pyc
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.pyo
@@ -2409,12 +2484,22 @@
${PYSITELIB}/sympy/plotting/tests/__init__.py
${PYSITELIB}/sympy/plotting/tests/__init__.pyc
${PYSITELIB}/sympy/plotting/tests/__init__.pyo
+${PYSITELIB}/sympy/plotting/tests/test_experimental_lambdify.py
+${PYSITELIB}/sympy/plotting/tests/test_experimental_lambdify.pyc
+${PYSITELIB}/sympy/plotting/tests/test_experimental_lambdify.pyo
${PYSITELIB}/sympy/plotting/tests/test_plot.py
${PYSITELIB}/sympy/plotting/tests/test_plot.pyc
${PYSITELIB}/sympy/plotting/tests/test_plot.pyo
${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.py
${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.pyc
${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.pyo
+${PYSITELIB}/sympy/plotting/tests/test_region_and.png
+${PYSITELIB}/sympy/plotting/tests/test_region_not.png
+${PYSITELIB}/sympy/plotting/tests/test_region_or.png
+${PYSITELIB}/sympy/plotting/tests/test_region_xor.png
+${PYSITELIB}/sympy/plotting/tests/test_textplot.py
+${PYSITELIB}/sympy/plotting/tests/test_textplot.pyc
+${PYSITELIB}/sympy/plotting/tests/test_textplot.pyo
${PYSITELIB}/sympy/plotting/textplot.py
${PYSITELIB}/sympy/plotting/textplot.pyc
${PYSITELIB}/sympy/plotting/textplot.pyo
@@ -2844,6 +2929,9 @@
${PYSITELIB}/sympy/printing/llvmjitcode.py
${PYSITELIB}/sympy/printing/llvmjitcode.pyc
${PYSITELIB}/sympy/printing/llvmjitcode.pyo
+${PYSITELIB}/sympy/printing/maple.py
+${PYSITELIB}/sympy/printing/maple.pyc
+${PYSITELIB}/sympy/printing/maple.pyo
${PYSITELIB}/sympy/printing/mathematica.py
${PYSITELIB}/sympy/printing/mathematica.pyc
${PYSITELIB}/sympy/printing/mathematica.pyo
@@ -2946,6 +3034,9 @@
${PYSITELIB}/sympy/printing/tests/test_llvmjit.py
${PYSITELIB}/sympy/printing/tests/test_llvmjit.pyc
${PYSITELIB}/sympy/printing/tests/test_llvmjit.pyo
+${PYSITELIB}/sympy/printing/tests/test_maple.py
+${PYSITELIB}/sympy/printing/tests/test_maple.pyc
+${PYSITELIB}/sympy/printing/tests/test_maple.pyo
${PYSITELIB}/sympy/printing/tests/test_mathematica.py
${PYSITELIB}/sympy/printing/tests/test_mathematica.pyc
${PYSITELIB}/sympy/printing/tests/test_mathematica.pyo
@@ -2991,6 +3082,9 @@
${PYSITELIB}/sympy/printing/tests/test_theanocode.py
Home |
Main Index |
Thread Index |
Old Index