pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/math/py-sympy
Module Name: pkgsrc
Committed By: minskim
Date: Fri Jan 24 16:20:24 UTC 2020
Modified Files:
pkgsrc/math/py-sympy: Makefile PLIST distinfo
Log Message:
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
To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 pkgsrc/math/py-sympy/Makefile
cvs rdiff -u -r1.17 -r1.18 pkgsrc/math/py-sympy/PLIST
cvs rdiff -u -r1.14 -r1.15 pkgsrc/math/py-sympy/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/math/py-sympy/Makefile
diff -u pkgsrc/math/py-sympy/Makefile:1.22 pkgsrc/math/py-sympy/Makefile:1.23
--- pkgsrc/math/py-sympy/Makefile:1.22 Wed Jan 15 19:13:06 2020
+++ pkgsrc/math/py-sympy/Makefile Fri Jan 24 16:20:24 2020
@@ -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/}
Index: pkgsrc/math/py-sympy/PLIST
diff -u pkgsrc/math/py-sympy/PLIST:1.17 pkgsrc/math/py-sympy/PLIST:1.18
--- pkgsrc/math/py-sympy/PLIST:1.17 Wed Jan 15 19:13:06 2020
+++ pkgsrc/math/py-sympy/PLIST Fri Jan 24 16:20:24 2020
@@ -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/ask_gener
${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/fnodes.pyo
${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_cx
${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/named_g
${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/t
${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_logic
${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/parset
${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_t
${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/dpll
${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-
${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/mathematica.p
${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/__init_
${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_ma
${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/tes
${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/gausso
${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/
${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/tests/test_sh
${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/quantit
${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/t
${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
${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
${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/pygletplot/u
${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/latex.pyo
${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_l
${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_t
${PYSITELIB}/sympy/printing/tests/test_theanocode.py
${PYSITELIB}/sympy/printing/tests/test_theanocode.pyc
${PYSITELIB}/sympy/printing/tests/test_theanocode.pyo
+${PYSITELIB}/sympy/printing/tests/test_tree.py
+${PYSITELIB}/sympy/printing/tests/test_tree.pyc
+${PYSITELIB}/sympy/printing/tests/test_tree.pyo
${PYSITELIB}/sympy/printing/theanocode.py
${PYSITELIB}/sympy/printing/theanocode.pyc
${PYSITELIB}/sympy/printing/theanocode.pyo
@@ -3021,6 +3115,9 @@ ${PYSITELIB}/sympy/series/acceleration.p
${PYSITELIB}/sympy/series/approximants.py
${PYSITELIB}/sympy/series/approximants.pyc
${PYSITELIB}/sympy/series/approximants.pyo
+${PYSITELIB}/sympy/series/aseries.py
+${PYSITELIB}/sympy/series/aseries.pyc
+${PYSITELIB}/sympy/series/aseries.pyo
${PYSITELIB}/sympy/series/benchmarks/__init__.py
${PYSITELIB}/sympy/series/benchmarks/__init__.pyc
${PYSITELIB}/sympy/series/benchmarks/__init__.pyo
@@ -3069,6 +3166,9 @@ ${PYSITELIB}/sympy/series/tests/__init__
${PYSITELIB}/sympy/series/tests/test_approximants.py
${PYSITELIB}/sympy/series/tests/test_approximants.pyc
${PYSITELIB}/sympy/series/tests/test_approximants.pyo
+${PYSITELIB}/sympy/series/tests/test_aseries.py
+${PYSITELIB}/sympy/series/tests/test_aseries.pyc
+${PYSITELIB}/sympy/series/tests/test_aseries.pyo
${PYSITELIB}/sympy/series/tests/test_demidovich.py
${PYSITELIB}/sympy/series/tests/test_demidovich.pyc
${PYSITELIB}/sympy/series/tests/test_demidovich.pyo
@@ -3144,6 +3244,9 @@ ${PYSITELIB}/sympy/sets/handlers/union.p
${PYSITELIB}/sympy/sets/ordinals.py
${PYSITELIB}/sympy/sets/ordinals.pyc
${PYSITELIB}/sympy/sets/ordinals.pyo
+${PYSITELIB}/sympy/sets/powerset.py
+${PYSITELIB}/sympy/sets/powerset.pyc
+${PYSITELIB}/sympy/sets/powerset.pyo
${PYSITELIB}/sympy/sets/setexpr.py
${PYSITELIB}/sympy/sets/setexpr.pyc
${PYSITELIB}/sympy/sets/setexpr.pyo
@@ -3165,6 +3268,9 @@ ${PYSITELIB}/sympy/sets/tests/test_fancy
${PYSITELIB}/sympy/sets/tests/test_ordinals.py
${PYSITELIB}/sympy/sets/tests/test_ordinals.pyc
${PYSITELIB}/sympy/sets/tests/test_ordinals.pyo
+${PYSITELIB}/sympy/sets/tests/test_powerset.py
+${PYSITELIB}/sympy/sets/tests/test_powerset.pyc
+${PYSITELIB}/sympy/sets/tests/test_powerset.pyo
${PYSITELIB}/sympy/sets/tests/test_setexpr.py
${PYSITELIB}/sympy/sets/tests/test_setexpr.pyc
${PYSITELIB}/sympy/sets/tests/test_setexpr.pyo
@@ -3375,12 +3481,24 @@ ${PYSITELIB}/sympy/stats/joint_rv.pyo
${PYSITELIB}/sympy/stats/joint_rv_types.py
${PYSITELIB}/sympy/stats/joint_rv_types.pyc
${PYSITELIB}/sympy/stats/joint_rv_types.pyo
+${PYSITELIB}/sympy/stats/random_matrix.py
+${PYSITELIB}/sympy/stats/random_matrix.pyc
+${PYSITELIB}/sympy/stats/random_matrix.pyo
+${PYSITELIB}/sympy/stats/random_matrix_models.py
+${PYSITELIB}/sympy/stats/random_matrix_models.pyc
+${PYSITELIB}/sympy/stats/random_matrix_models.pyo
${PYSITELIB}/sympy/stats/rv.py
${PYSITELIB}/sympy/stats/rv.pyc
${PYSITELIB}/sympy/stats/rv.pyo
${PYSITELIB}/sympy/stats/rv_interface.py
${PYSITELIB}/sympy/stats/rv_interface.pyc
${PYSITELIB}/sympy/stats/rv_interface.pyo
+${PYSITELIB}/sympy/stats/stochastic_process.py
+${PYSITELIB}/sympy/stats/stochastic_process.pyc
+${PYSITELIB}/sympy/stats/stochastic_process.pyo
+${PYSITELIB}/sympy/stats/stochastic_process_types.py
+${PYSITELIB}/sympy/stats/stochastic_process_types.pyc
+${PYSITELIB}/sympy/stats/stochastic_process_types.pyo
${PYSITELIB}/sympy/stats/symbolic_probability.py
${PYSITELIB}/sympy/stats/symbolic_probability.pyc
${PYSITELIB}/sympy/stats/symbolic_probability.pyo
@@ -3405,9 +3523,15 @@ ${PYSITELIB}/sympy/stats/tests/test_join
${PYSITELIB}/sympy/stats/tests/test_mix.py
${PYSITELIB}/sympy/stats/tests/test_mix.pyc
${PYSITELIB}/sympy/stats/tests/test_mix.pyo
+${PYSITELIB}/sympy/stats/tests/test_random_matrix.py
+${PYSITELIB}/sympy/stats/tests/test_random_matrix.pyc
+${PYSITELIB}/sympy/stats/tests/test_random_matrix.pyo
${PYSITELIB}/sympy/stats/tests/test_rv.py
${PYSITELIB}/sympy/stats/tests/test_rv.pyc
${PYSITELIB}/sympy/stats/tests/test_rv.pyo
+${PYSITELIB}/sympy/stats/tests/test_stochastic_process.py
+${PYSITELIB}/sympy/stats/tests/test_stochastic_process.pyc
+${PYSITELIB}/sympy/stats/tests/test_stochastic_process.pyo
${PYSITELIB}/sympy/stats/tests/test_symbolic_probability.py
${PYSITELIB}/sympy/stats/tests/test_symbolic_probability.pyc
${PYSITELIB}/sympy/stats/tests/test_symbolic_probability.pyo
@@ -3483,6 +3607,9 @@ ${PYSITELIB}/sympy/tensor/__init__.pyo
${PYSITELIB}/sympy/tensor/array/__init__.py
${PYSITELIB}/sympy/tensor/array/__init__.pyc
${PYSITELIB}/sympy/tensor/array/__init__.pyo
+${PYSITELIB}/sympy/tensor/array/array_comprehension.py
+${PYSITELIB}/sympy/tensor/array/array_comprehension.pyc
+${PYSITELIB}/sympy/tensor/array/array_comprehension.pyo
${PYSITELIB}/sympy/tensor/array/arrayop.py
${PYSITELIB}/sympy/tensor/array/arrayop.pyc
${PYSITELIB}/sympy/tensor/array/arrayop.pyo
@@ -3501,6 +3628,9 @@ ${PYSITELIB}/sympy/tensor/array/sparse_n
${PYSITELIB}/sympy/tensor/array/tests/__init__.py
${PYSITELIB}/sympy/tensor/array/tests/__init__.pyc
${PYSITELIB}/sympy/tensor/array/tests/__init__.pyo
+${PYSITELIB}/sympy/tensor/array/tests/test_array_comprehension.py
+${PYSITELIB}/sympy/tensor/array/tests/test_array_comprehension.pyc
+${PYSITELIB}/sympy/tensor/array/tests/test_array_comprehension.pyo
${PYSITELIB}/sympy/tensor/array/tests/test_arrayop.py
${PYSITELIB}/sympy/tensor/array/tests/test_arrayop.pyc
${PYSITELIB}/sympy/tensor/array/tests/test_arrayop.pyo
@@ -3510,6 +3640,9 @@ ${PYSITELIB}/sympy/tensor/array/tests/te
${PYSITELIB}/sympy/tensor/array/tests/test_mutable_ndim_array.py
${PYSITELIB}/sympy/tensor/array/tests/test_mutable_ndim_array.pyc
${PYSITELIB}/sympy/tensor/array/tests/test_mutable_ndim_array.pyo
+${PYSITELIB}/sympy/tensor/array/tests/test_ndim_array.py
+${PYSITELIB}/sympy/tensor/array/tests/test_ndim_array.pyc
+${PYSITELIB}/sympy/tensor/array/tests/test_ndim_array.pyo
${PYSITELIB}/sympy/tensor/array/tests/test_ndim_array_conversions.py
${PYSITELIB}/sympy/tensor/array/tests/test_ndim_array_conversions.pyc
${PYSITELIB}/sympy/tensor/array/tests/test_ndim_array_conversions.pyo
@@ -3648,6 +3781,9 @@ ${PYSITELIB}/sympy/utilities/pkgdata.pyo
${PYSITELIB}/sympy/utilities/pytest.py
${PYSITELIB}/sympy/utilities/pytest.pyc
${PYSITELIB}/sympy/utilities/pytest.pyo
+${PYSITELIB}/sympy/utilities/quality_unicode.py
+${PYSITELIB}/sympy/utilities/quality_unicode.pyc
+${PYSITELIB}/sympy/utilities/quality_unicode.pyo
${PYSITELIB}/sympy/utilities/randtest.py
${PYSITELIB}/sympy/utilities/randtest.pyc
${PYSITELIB}/sympy/utilities/randtest.pyo
Index: pkgsrc/math/py-sympy/distinfo
diff -u pkgsrc/math/py-sympy/distinfo:1.14 pkgsrc/math/py-sympy/distinfo:1.15
--- pkgsrc/math/py-sympy/distinfo:1.14 Wed Jan 15 19:13:06 2020
+++ pkgsrc/math/py-sympy/distinfo Fri Jan 24 16:20:24 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.14 2020/01/15 19:13:06 minskim Exp $
+$NetBSD: distinfo,v 1.15 2020/01/24 16:20:24 minskim Exp $
-SHA1 (sympy-1.4.tar.gz) = 9485daf9e29f4ffa20e04111bea940a917eb3a69
-RMD160 (sympy-1.4.tar.gz) = 4f67bb1afa1895cc7c991f9ba23c23fa699e22e3
-SHA512 (sympy-1.4.tar.gz) = 6ae09be7260b1624b4f92d39c68d5cdf54e6e33010d9215f46d62d989c04cdbee6f9f9c8b11ebeda53257d154954fb926b3ab7335b738e33ad248764875b6ddb
-Size (sympy-1.4.tar.gz) = 6017715 bytes
+SHA1 (sympy-1.5.tar.gz) = be2e740860f7900f0ee2a8102d2943fded44125c
+RMD160 (sympy-1.5.tar.gz) = 3d1b3efed8553d5d2aa84fbc40be4a895c3c617a
+SHA512 (sympy-1.5.tar.gz) = 882ed99cbc7333cbed85d247d04a764a92855e3d26cee96163d18ece566115b9d38999bbe022225521834037dbdfc4c567548112dfddd5ece65af8f672a06091
+Size (sympy-1.5.tar.gz) = 6294079 bytes
Home |
Main Index |
Thread Index |
Old Index