passagemath-modules 10.5.34__cp313-cp313-macosx_13_0_x86_64.whl → 10.6.40__cp313-cp313-macosx_13_0_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (349) hide show
  1. {passagemath_modules.dylibs → passagemath_modules/.dylibs}/libgfortran.5.dylib +0 -0
  2. passagemath_modules/.dylibs/libgmp.10.dylib +0 -0
  3. passagemath_modules/.dylibs/libgsl.28.dylib +0 -0
  4. passagemath_modules/.dylibs/libmpc.3.dylib +0 -0
  5. passagemath_modules/.dylibs/libmpfr.6.dylib +0 -0
  6. passagemath_modules/.dylibs/libopenblasp-r0.3.29.dylib +0 -0
  7. {passagemath_modules.dylibs → passagemath_modules/.dylibs}/libquadmath.0.dylib +0 -0
  8. passagemath_modules/__init__.py +3 -0
  9. {passagemath_modules-10.5.34.dist-info → passagemath_modules-10.6.40.dist-info}/METADATA +53 -48
  10. {passagemath_modules-10.5.34.dist-info → passagemath_modules-10.6.40.dist-info}/RECORD +341 -332
  11. {passagemath_modules-10.5.34.dist-info → passagemath_modules-10.6.40.dist-info}/WHEEL +2 -2
  12. passagemath_modules-10.6.40.dist-info/top_level.txt +3 -0
  13. sage/algebras/clifford_algebra.py +2 -2
  14. sage/algebras/clifford_algebra_element.cpython-313-darwin.so +0 -0
  15. sage/algebras/clifford_algebra_element.pyx +4 -2
  16. sage/algebras/exterior_algebra_groebner.cpython-313-darwin.so +0 -0
  17. sage/algebras/exterior_algebra_groebner.pyx +2 -0
  18. sage/algebras/finite_dimensional_algebras/finite_dimensional_algebra.py +83 -5
  19. sage/algebras/finite_dimensional_algebras/finite_dimensional_algebra_element.cpython-313-darwin.so +0 -0
  20. sage/algebras/finite_dimensional_algebras/finite_dimensional_algebra_element.pxd +2 -0
  21. sage/algebras/finite_dimensional_algebras/finite_dimensional_algebra_element.pyx +28 -3
  22. sage/algebras/finite_gca.py +1 -1
  23. sage/algebras/lie_algebras/bgg_dual_module.py +18 -11
  24. sage/algebras/lie_algebras/bgg_resolution.py +9 -9
  25. sage/algebras/lie_algebras/classical_lie_algebra.py +3 -3
  26. sage/algebras/lie_algebras/examples.py +2 -2
  27. sage/algebras/lie_algebras/free_lie_algebra.py +1 -1
  28. sage/algebras/lie_algebras/heisenberg.py +4 -4
  29. sage/algebras/lie_algebras/lie_algebra.py +1 -1
  30. sage/algebras/lie_algebras/lie_algebra_element.cpython-313-darwin.so +0 -0
  31. sage/algebras/lie_algebras/lie_algebra_element.pyx +65 -28
  32. sage/algebras/lie_algebras/quotient.py +40 -29
  33. sage/algebras/lie_algebras/subalgebra.py +76 -53
  34. sage/algebras/lie_algebras/verma_module.py +1 -3
  35. sage/algebras/octonion_algebra.cpython-313-darwin.so +0 -0
  36. sage/algebras/octonion_algebra.pyx +1 -1
  37. sage/algebras/orlik_solomon.py +4 -4
  38. sage/algebras/orlik_terao.py +4 -4
  39. sage/algebras/steenrod/steenrod_algebra.py +37 -30
  40. sage/algebras/steenrod/steenrod_algebra_bases.py +2 -2
  41. sage/algebras/steenrod/steenrod_algebra_misc.py +4 -4
  42. sage/algebras/steenrod/steenrod_algebra_mult.py +2 -2
  43. sage/all__sagemath_modules.py +1 -0
  44. sage/calculus/integration.cpython-313-darwin.so +0 -0
  45. sage/calculus/integration.pyx +6 -5
  46. sage/calculus/interpolation.cpython-313-darwin.so +0 -0
  47. sage/calculus/interpolators.cpython-313-darwin.so +0 -0
  48. sage/calculus/ode.cpython-313-darwin.so +0 -0
  49. sage/calculus/ode.pxd +2 -2
  50. sage/calculus/ode.pyx +6 -4
  51. sage/calculus/riemann.cpython-313-darwin.so +0 -0
  52. sage/calculus/riemann.pyx +68 -48
  53. sage/calculus/transforms/dwt.cpython-313-darwin.so +0 -0
  54. sage/calculus/transforms/fft.cpython-313-darwin.so +0 -0
  55. sage/coding/ag_code_decoders.cpython-313-darwin.so +0 -0
  56. sage/coding/ag_code_decoders.pyx +31 -31
  57. sage/coding/binary_code.cpython-313-darwin.so +0 -0
  58. sage/coding/binary_code.pxd +6 -6
  59. sage/coding/binary_code.pyx +212 -173
  60. sage/coding/cyclic_code.py +1 -1
  61. sage/coding/guruswami_sudan/utils.py +3 -5
  62. sage/coding/kasami_codes.cpython-313-darwin.so +0 -0
  63. sage/coding/kasami_codes.pyx +20 -24
  64. sage/coding/linear_code.py +2 -2
  65. sage/coding/linear_code_no_metric.py +5 -5
  66. sage/coding/linear_rank_metric.py +81 -19
  67. sage/combinat/cartesian_product.py +1 -1
  68. sage/combinat/free_module.py +22 -2
  69. sage/combinat/root_system/all.py +1 -1
  70. sage/combinat/root_system/ambient_space.py +1 -1
  71. sage/combinat/root_system/associahedron.py +4 -4
  72. sage/combinat/root_system/braid_move_calculator.py +2 -2
  73. sage/combinat/root_system/braid_orbit.cpython-313-darwin.so +0 -0
  74. sage/combinat/root_system/braid_orbit.pyx +1 -1
  75. sage/combinat/root_system/branching_rules.py +3 -3
  76. sage/combinat/root_system/cartan_type.py +14 -14
  77. sage/combinat/root_system/coxeter_group.py +3 -3
  78. sage/combinat/root_system/coxeter_matrix.py +1 -1
  79. sage/combinat/root_system/coxeter_type.py +12 -1
  80. sage/combinat/root_system/extended_affine_weyl_group.py +9 -9
  81. sage/combinat/root_system/fundamental_group.py +3 -5
  82. sage/combinat/root_system/hecke_algebra_representation.py +9 -10
  83. sage/combinat/root_system/integrable_representations.py +1 -1
  84. sage/combinat/root_system/pieri_factors.py +3 -3
  85. sage/combinat/root_system/root_lattice_realization_algebras.py +1 -1
  86. sage/combinat/root_system/root_lattice_realizations.py +1 -1
  87. sage/combinat/root_system/root_system.py +4 -4
  88. sage/combinat/root_system/type_folded.py +3 -3
  89. sage/combinat/root_system/type_reducible.py +8 -7
  90. sage/combinat/root_system/type_super_A.py +2 -2
  91. sage/combinat/root_system/weight_lattice_realizations.py +9 -8
  92. sage/combinat/root_system/weyl_characters.py +2 -2
  93. sage/crypto/__init__.py +1 -0
  94. sage/crypto/block_cipher/des.py +1 -1
  95. sage/crypto/block_cipher/miniaes.py +3 -3
  96. sage/crypto/block_cipher/present.py +3 -3
  97. sage/crypto/block_cipher/sdes.py +3 -3
  98. sage/crypto/boolean_function.cpython-313-darwin.so +0 -0
  99. sage/crypto/boolean_function.pyx +22 -23
  100. sage/crypto/key_exchange/diffie_hellman.py +4 -9
  101. sage/crypto/mq/rijndael_gf.py +1 -1
  102. sage/crypto/mq/sr.py +1 -1
  103. sage/crypto/public_key/blum_goldwasser.py +3 -3
  104. sage/crypto/sbox.cpython-313-darwin.so +0 -0
  105. sage/crypto/sbox.pyx +1 -1
  106. sage/crypto/sboxes.py +22 -0
  107. sage/crypto/util.py +4 -6
  108. sage/ext/interpreters/all__sagemath_modules.py +1 -1
  109. sage/ext/interpreters/wrapper_cc.cpython-313-darwin.so +0 -0
  110. sage/ext/interpreters/wrapper_cc.pxd +5 -5
  111. sage/ext/interpreters/wrapper_cc.pyx +1 -1
  112. sage/ext/interpreters/wrapper_cdf.cpython-313-darwin.so +0 -0
  113. sage/ext/interpreters/wrapper_cdf.pxd +5 -7
  114. sage/ext/interpreters/wrapper_cdf.pyx +4 -10
  115. sage/ext/interpreters/wrapper_rdf.cpython-313-darwin.so +0 -0
  116. sage/ext/interpreters/wrapper_rdf.pxd +1 -1
  117. sage/ext/interpreters/wrapper_rdf.pyx +1 -1
  118. sage/ext/interpreters/wrapper_rr.cpython-313-darwin.so +0 -0
  119. sage/ext/interpreters/wrapper_rr.pxd +5 -5
  120. sage/ext/interpreters/wrapper_rr.pyx +1 -2
  121. sage/geometry/toric_lattice.py +3 -3
  122. sage/geometry/toric_lattice_element.cpython-313-darwin.so +0 -0
  123. sage/groups/additive_abelian/additive_abelian_group.py +1 -1
  124. sage/groups/additive_abelian/qmodnz.py +4 -4
  125. sage/groups/matrix_gps/coxeter_group.py +17 -4
  126. sage/groups/matrix_gps/group_element.cpython-313-darwin.so +0 -0
  127. sage/groups/misc_gps/argument_groups.py +2 -2
  128. sage/groups/misc_gps/imaginary_groups.py +4 -4
  129. sage/groups/perm_gps/partn_ref/refinement_binary.cpython-313-darwin.so +0 -0
  130. sage/groups/perm_gps/partn_ref/refinement_matrices.cpython-313-darwin.so +0 -0
  131. sage/homology/chain_complex.py +0 -2
  132. sage/homology/hochschild_complex.py +3 -3
  133. sage/homology/homology_morphism.py +6 -6
  134. sage/homology/homology_vector_space_with_basis.py +1 -1
  135. sage/libs/gsl/array.cpython-313-darwin.so +0 -0
  136. sage/libs/mpmath/utils.cpython-313-darwin.so +0 -0
  137. sage/matrix/action.cpython-313-darwin.so +0 -0
  138. sage/matrix/args.cpython-313-darwin.so +0 -0
  139. sage/matrix/args.pxd +2 -1
  140. sage/matrix/args.pyx +143 -21
  141. sage/matrix/benchmark.py +8 -4
  142. sage/matrix/compute_J_ideal.py +2 -2
  143. sage/matrix/constructor.cpython-313-darwin.so +0 -0
  144. sage/matrix/echelon_matrix.cpython-313-darwin.so +0 -0
  145. sage/matrix/echelon_matrix.pyx +1 -1
  146. sage/matrix/matrix0.cpython-313-darwin.so +0 -0
  147. sage/matrix/matrix0.pxd +3 -3
  148. sage/matrix/matrix0.pyx +9 -7
  149. sage/matrix/matrix1.cpython-313-darwin.so +0 -0
  150. sage/matrix/matrix1.pyx +87 -48
  151. sage/matrix/matrix2.cpython-313-darwin.so +0 -0
  152. sage/matrix/matrix2.pxd +3 -3
  153. sage/matrix/matrix2.pyx +1261 -63
  154. sage/matrix/matrix_cdv.cpython-313-darwin.so +0 -0
  155. sage/matrix/matrix_complex_double_dense.cpython-313-darwin.so +0 -0
  156. sage/matrix/matrix_complex_double_dense.pyx +1 -1
  157. sage/matrix/matrix_dense.cpython-313-darwin.so +0 -0
  158. sage/matrix/matrix_dense.pyx +2 -3
  159. sage/matrix/matrix_double_dense.cpython-313-darwin.so +0 -0
  160. sage/matrix/matrix_double_dense.pyx +11 -5
  161. sage/matrix/matrix_double_sparse.cpython-313-darwin.so +0 -0
  162. sage/matrix/matrix_generic_dense.cpython-313-darwin.so +0 -0
  163. sage/matrix/matrix_generic_sparse.cpython-313-darwin.so +0 -0
  164. sage/matrix/matrix_generic_sparse.pyx +1 -1
  165. sage/matrix/matrix_laurent_mpolynomial_dense.cpython-313-darwin.so +0 -0
  166. sage/matrix/matrix_numpy_dense.cpython-313-darwin.so +0 -0
  167. sage/matrix/matrix_numpy_integer_dense.cpython-313-darwin.so +0 -0
  168. sage/matrix/matrix_polynomial_dense.cpython-313-darwin.so +0 -0
  169. sage/matrix/matrix_polynomial_dense.pyx +952 -261
  170. sage/matrix/matrix_real_double_dense.cpython-313-darwin.so +0 -0
  171. sage/matrix/matrix_space.py +18 -9
  172. sage/matrix/matrix_sparse.cpython-313-darwin.so +0 -0
  173. sage/matrix/matrix_sparse.pyx +6 -7
  174. sage/matrix/matrix_window.cpython-313-darwin.so +0 -0
  175. sage/matrix/matrix_window.pyx +2 -2
  176. sage/matrix/misc_mpfr.cpython-313-darwin.so +0 -0
  177. sage/matrix/operation_table.py +0 -2
  178. sage/matrix/special.py +5 -1
  179. sage/matrix/strassen.cpython-313-darwin.so +0 -0
  180. sage/matrix/strassen.pyx +1 -1
  181. sage/matroids/basis_exchange_matroid.cpython-313-darwin.so +0 -0
  182. sage/matroids/basis_matroid.cpython-313-darwin.so +0 -0
  183. sage/matroids/chow_ring.py +68 -65
  184. sage/matroids/chow_ring_ideal.py +41 -38
  185. sage/matroids/circuit_closures_matroid.cpython-313-darwin.so +0 -0
  186. sage/matroids/circuits_matroid.cpython-313-darwin.so +0 -0
  187. sage/matroids/database_matroids.py +16 -5
  188. sage/matroids/dual_matroid.py +2 -2
  189. sage/matroids/extension.cpython-313-darwin.so +0 -0
  190. sage/matroids/flats_matroid.cpython-313-darwin.so +0 -0
  191. sage/matroids/gammoid.py +1 -1
  192. sage/matroids/graphic_matroid.cpython-313-darwin.so +0 -0
  193. sage/matroids/graphic_matroid.pyx +3 -3
  194. sage/matroids/lean_matrix.cpython-313-darwin.so +0 -0
  195. sage/matroids/lean_matrix.pyx +22 -22
  196. sage/matroids/linear_matroid.cpython-313-darwin.so +0 -0
  197. sage/matroids/linear_matroid.pyx +13 -13
  198. sage/matroids/matroid.cpython-313-darwin.so +0 -0
  199. sage/matroids/matroid.pyx +25 -16
  200. sage/matroids/matroids_plot_helpers.py +48 -46
  201. sage/matroids/minor_matroid.py +2 -2
  202. sage/matroids/set_system.cpython-313-darwin.so +0 -0
  203. sage/matroids/transversal_matroid.cpython-313-darwin.so +0 -0
  204. sage/matroids/transversal_matroid.pyx +3 -3
  205. sage/matroids/union_matroid.cpython-313-darwin.so +0 -0
  206. sage/matroids/union_matroid.pyx +3 -0
  207. sage/matroids/unpickling.cpython-313-darwin.so +0 -0
  208. sage/matroids/utilities.py +2 -2
  209. sage/misc/c3.cpython-313-darwin.so +0 -0
  210. sage/misc/compat.py +1 -2
  211. sage/misc/pickle_old.cpython-313-darwin.so +0 -0
  212. sage/modules/diamond_cutting.py +117 -30
  213. sage/modules/fg_pid/fgp_module.py +3 -3
  214. sage/modules/filtered_vector_space.py +4 -4
  215. sage/modules/finite_submodule_iter.cpython-313-darwin.so +0 -0
  216. sage/modules/fp_graded/free_module.py +2 -2
  217. sage/modules/fp_graded/module.py +2 -2
  218. sage/modules/fp_graded/morphism.py +4 -4
  219. sage/modules/fp_graded/steenrod/morphism.py +1 -1
  220. sage/modules/free_module.py +163 -27
  221. sage/modules/free_module_element.cpython-313-darwin.so +0 -0
  222. sage/modules/free_module_element.pyx +4 -4
  223. sage/modules/free_module_integer.py +2 -2
  224. sage/modules/free_module_morphism.py +3 -3
  225. sage/modules/free_module_pseudohomspace.py +352 -0
  226. sage/modules/free_module_pseudomorphism.py +578 -0
  227. sage/modules/free_quadratic_module_integer_symmetric.py +24 -13
  228. sage/modules/matrix_morphism.py +9 -9
  229. sage/modules/multi_filtered_vector_space.py +4 -4
  230. sage/modules/ore_module.py +2208 -0
  231. sage/modules/ore_module_element.py +178 -0
  232. sage/modules/ore_module_homspace.py +147 -0
  233. sage/modules/ore_module_morphism.py +968 -0
  234. sage/modules/quotient_module.py +11 -1
  235. sage/modules/submodule.py +2 -2
  236. sage/modules/torsion_quadratic_module.py +1 -1
  237. sage/modules/tutorial_free_modules.py +1 -1
  238. sage/modules/vector_complex_double_dense.cpython-313-darwin.so +0 -0
  239. sage/modules/vector_double_dense.cpython-313-darwin.so +0 -0
  240. sage/modules/vector_integer_dense.cpython-313-darwin.so +0 -0
  241. sage/modules/vector_integer_sparse.cpython-313-darwin.so +0 -0
  242. sage/modules/vector_integer_sparse.pyx +4 -4
  243. sage/modules/vector_modn_dense.cpython-313-darwin.so +0 -0
  244. sage/modules/vector_modn_sparse.cpython-313-darwin.so +0 -0
  245. sage/modules/vector_numpy_dense.cpython-313-darwin.so +0 -0
  246. sage/modules/vector_numpy_integer_dense.cpython-313-darwin.so +0 -0
  247. sage/modules/vector_rational_dense.cpython-313-darwin.so +0 -0
  248. sage/modules/vector_rational_dense.pyx +1 -1
  249. sage/modules/vector_rational_sparse.cpython-313-darwin.so +0 -0
  250. sage/modules/vector_rational_sparse.pyx +5 -5
  251. sage/modules/vector_real_double_dense.cpython-313-darwin.so +0 -0
  252. sage/modules/vector_space_morphism.py +2 -2
  253. sage/modules/with_basis/cell_module.py +17 -0
  254. sage/modules/with_basis/indexed_element.cpython-313-darwin.so +0 -0
  255. sage/modules/with_basis/indexed_element.pyx +2 -2
  256. sage/modules/with_basis/invariant.py +1 -1
  257. sage/modules/with_basis/representation.py +3 -4
  258. sage/modules/with_basis/subquotient.py +2 -2
  259. sage/numerical/gauss_legendre.cpython-313-darwin.so +0 -0
  260. sage/probability/probability_distribution.cpython-313-darwin.so +0 -0
  261. sage/quadratic_forms/binary_qf.py +11 -11
  262. sage/quadratic_forms/bqf_class_group.py +26 -92
  263. sage/quadratic_forms/count_local_2.cpython-313-darwin.so +0 -0
  264. sage/quadratic_forms/extras.py +1 -1
  265. sage/quadratic_forms/quadratic_form.py +5 -4
  266. sage/quadratic_forms/quadratic_form__equivalence_testing.py +7 -4
  267. sage/quadratic_forms/quadratic_form__evaluate.cpython-313-darwin.so +0 -0
  268. sage/quadratic_forms/quadratic_form__local_field_invariants.py +10 -10
  269. sage/quadratic_forms/quadratic_form__ternary_Tornaria.py +2 -2
  270. sage/quadratic_forms/ternary.cpython-313-darwin.so +0 -0
  271. sage/quadratic_forms/ternary_qf.py +50 -83
  272. sage/rings/cfinite_sequence.py +16 -17
  273. sage/rings/complex_conversion.cpython-313-darwin.so +0 -0
  274. sage/rings/complex_double.cpython-313-darwin.so +0 -0
  275. sage/rings/complex_double.pxd +1 -0
  276. sage/rings/complex_double.pyx +37 -32
  277. sage/rings/complex_mpc.cpython-313-darwin.so +0 -0
  278. sage/rings/complex_mpc.pyx +27 -23
  279. sage/rings/complex_mpfr.cpython-313-darwin.so +0 -0
  280. sage/rings/complex_mpfr.pyx +11 -11
  281. sage/rings/function_field/drinfeld_modules/charzero_drinfeld_module.py +277 -21
  282. sage/rings/function_field/drinfeld_modules/drinfeld_module.py +10 -1
  283. sage/rings/function_field/drinfeld_modules/finite_drinfeld_module.py +1 -1
  284. sage/rings/function_field/drinfeld_modules/homset.py +1 -2
  285. sage/rings/function_field/drinfeld_modules/morphism.py +2 -2
  286. sage/rings/function_field/hermite_form_polynomial.cpython-313-darwin.so +0 -0
  287. sage/rings/function_field/khuri_makdisi.cpython-313-darwin.so +0 -0
  288. sage/rings/function_field/khuri_makdisi.pyx +27 -25
  289. sage/rings/invariants/invariant_theory.py +61 -60
  290. sage/rings/invariants/reconstruction.py +8 -8
  291. sage/rings/polynomial/laurent_polynomial_mpair.cpython-313-darwin.so +0 -0
  292. sage/rings/polynomial/ore_function_element.py +1 -1
  293. sage/rings/polynomial/ore_polynomial_element.cpython-313-darwin.so +0 -0
  294. sage/rings/polynomial/ore_polynomial_element.pyx +8 -8
  295. sage/rings/polynomial/ore_polynomial_ring.py +134 -17
  296. sage/rings/polynomial/polynomial_real_mpfr_dense.cpython-313-darwin.so +0 -0
  297. sage/rings/polynomial/skew_polynomial_element.cpython-313-darwin.so +0 -0
  298. sage/rings/polynomial/skew_polynomial_finite_field.cpython-313-darwin.so +0 -0
  299. sage/rings/polynomial/skew_polynomial_finite_field.pyx +3 -4
  300. sage/rings/polynomial/skew_polynomial_finite_order.cpython-313-darwin.so +0 -0
  301. sage/rings/polynomial/skew_polynomial_finite_order.pyx +2 -5
  302. sage/rings/real_double_element_gsl.cpython-313-darwin.so +0 -0
  303. sage/rings/real_mpfr.cpython-313-darwin.so +0 -0
  304. sage/rings/real_mpfr.pyx +57 -17
  305. sage/rings/ring_extension.cpython-313-darwin.so +0 -0
  306. sage/rings/ring_extension.pyx +4 -2
  307. sage/rings/ring_extension_conversion.cpython-313-darwin.so +0 -0
  308. sage/rings/ring_extension_element.cpython-313-darwin.so +0 -0
  309. sage/rings/ring_extension_element.pyx +42 -0
  310. sage/rings/ring_extension_morphism.cpython-313-darwin.so +0 -0
  311. sage/schemes/all__sagemath_modules.py +1 -0
  312. sage/schemes/projective/all__sagemath_modules.py +1 -0
  313. sage/schemes/projective/coherent_sheaf.py +300 -0
  314. sage/schemes/projective/cohomology.py +510 -0
  315. sage/stats/basic_stats.py +17 -15
  316. sage/stats/distributions/dgs_misc.h +11 -4
  317. sage/stats/distributions/discrete_gaussian_integer.cpython-313-darwin.so +0 -0
  318. sage/stats/distributions/discrete_gaussian_integer.pyx +9 -7
  319. sage/stats/hmm/chmm.cpython-313-darwin.so +0 -0
  320. sage/stats/hmm/chmm.pyx +13 -13
  321. sage/stats/hmm/distributions.cpython-313-darwin.so +0 -0
  322. sage/stats/hmm/distributions.pxd +3 -3
  323. sage/stats/hmm/distributions.pyx +3 -3
  324. sage/stats/hmm/hmm.cpython-313-darwin.so +0 -0
  325. sage/stats/hmm/hmm.pxd +3 -3
  326. sage/stats/hmm/hmm.pyx +6 -6
  327. sage/stats/hmm/util.cpython-313-darwin.so +0 -0
  328. sage/stats/hmm/util.pyx +6 -6
  329. sage/stats/intlist.cpython-313-darwin.so +0 -0
  330. sage/stats/intlist.pxd +3 -3
  331. sage/stats/time_series.cpython-313-darwin.so +0 -0
  332. sage/tensor/modules/alternating_contr_tensor.py +3 -3
  333. sage/tensor/modules/comp.py +3 -3
  334. sage/tensor/modules/ext_pow_free_module.py +3 -3
  335. sage/tensor/modules/format_utilities.py +3 -3
  336. sage/tensor/modules/free_module_linear_group.py +3 -3
  337. sage/tensor/modules/free_module_morphism.py +0 -1
  338. sage/tensor/modules/tensor_free_module.py +3 -3
  339. sage/tensor/modules/tensor_free_submodule.py +1 -1
  340. sage/tensor/modules/tensor_free_submodule_basis.py +1 -1
  341. sage/tensor/modules/tensor_with_indices.py +5 -5
  342. passagemath_modules-10.5.34.dist-info/top_level.txt +0 -2
  343. passagemath_modules.dylibs/libgcc_s.1.1.dylib +0 -0
  344. passagemath_modules.dylibs/libgmp.10.dylib +0 -0
  345. passagemath_modules.dylibs/libgsl.28.dylib +0 -0
  346. passagemath_modules.dylibs/libmpc.3.dylib +0 -0
  347. passagemath_modules.dylibs/libmpfr.6.dylib +0 -0
  348. passagemath_modules.dylibs/libopenblas_sandybridgep-r0.3.28.dylib +0 -0
  349. sage/ext/interpreters/__init__.py +0 -1
@@ -0,0 +1,3 @@
1
+ # sage_setup: distribution = sagemath-modules
2
+
3
+ from sage.all__sagemath_modules import *
@@ -1,14 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: passagemath-modules
3
- Version: 10.5.34
3
+ Version: 10.6.40
4
4
  Summary: passagemath: Vectors, matrices, tensors, vector spaces, affine spaces, modules and algebras, additive groups, quadratic forms, homology, coding theory, matroids
5
5
  Author-email: The Sage Developers <sage-support@googlegroups.com>
6
6
  Maintainer: Matthias Köppe, passagemath contributors
7
- License: GNU General Public License (GPL) v2 or later
7
+ License-Expression: GPL-2.0-or-later
8
8
  Project-URL: release notes, https://github.com/passagemath/passagemath/releases
9
9
  Project-URL: repo (upstream), https://github.com/sagemath/sage
10
10
  Project-URL: repo, https://github.com/passagemath/passagemath
11
- Project-URL: documentation, https://doc.sagemath.org
11
+ Project-URL: documentation, https://passagemath.org/docs/latest
12
12
  Project-URL: homepage (upstream), https://www.sagemath.org
13
13
  Project-URL: discourse, https://passagemath.discourse.group
14
14
  Project-URL: tracker (upstream), https://github.com/sagemath/sage/issues
@@ -16,23 +16,25 @@ Project-URL: tracker, https://github.com/passagemath/passagemath/issues
16
16
  Classifier: Development Status :: 6 - Mature
17
17
  Classifier: Intended Audience :: Education
18
18
  Classifier: Intended Audience :: Science/Research
19
- Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
20
19
  Classifier: Operating System :: POSIX
20
+ Classifier: Operating System :: POSIX :: Linux
21
21
  Classifier: Operating System :: MacOS :: MacOS X
22
+ Classifier: Operating System :: Microsoft :: Windows
22
23
  Classifier: Programming Language :: Python :: 3 :: Only
23
- Classifier: Programming Language :: Python :: 3.9
24
24
  Classifier: Programming Language :: Python :: 3.10
25
25
  Classifier: Programming Language :: Python :: 3.11
26
26
  Classifier: Programming Language :: Python :: 3.12
27
27
  Classifier: Programming Language :: Python :: 3.13
28
28
  Classifier: Programming Language :: Python :: Implementation :: CPython
29
29
  Classifier: Topic :: Scientific/Engineering :: Mathematics
30
- Requires-Python: <3.14,>=3.9
30
+ Requires-Python: <3.15,>=3.10
31
31
  Description-Content-Type: text/x-rst
32
32
  Requires-Dist: gmpy2~=2.1.b999
33
- Requires-Dist: cysignals==1.12.0rc2
33
+ Requires-Dist: cysignals!=1.12.4; sys_platform == "win32"
34
+ Requires-Dist: cysignals!=1.12.0,>=1.11.2
34
35
  Requires-Dist: memory_allocator
35
- Requires-Dist: passagemath-categories~=10.5.34.0
36
+ Requires-Dist: passagemath-categories~=10.6.40.0
37
+ Requires-Dist: passagemath-environment~=10.6.40.0
36
38
  Requires-Dist: mpmath<1.4,>=1.1.0
37
39
  Provides-Extra: test
38
40
  Requires-Dist: passagemath-repl; extra == "test"
@@ -123,80 +125,83 @@ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
123
125
  developed 2005-2025 under the motto “Creating a Viable Open Source
124
126
  Alternative to Magma, Maple, Mathematica, and MATLAB”.
125
127
 
126
- The passagemath fork was created in October 2024 with the following
127
- goals:
128
+ The passagemath fork uses the motto "Creating a Free Passage Between the
129
+ Scientific Python Ecosystem and Mathematical Software Communities."
130
+ It was created in October 2024 with the following goals:
128
131
 
129
- - providing modularized installation with pip, thus completing a `major
130
- project started in 2020 in the Sage
131
- codebase <https://github.com/sagemath/sage/issues/29705>`__,
132
+ - providing modularized installation with pip,
132
133
  - establishing first-class membership in the scientific Python
133
134
  ecosystem,
134
135
  - giving `clear attribution of upstream
135
136
  projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
136
137
  - providing independently usable Python interfaces to upstream
137
138
  libraries,
138
- - providing `platform portability and integration testing
139
+ - offering `platform portability and integration testing
139
140
  services <https://github.com/passagemath/passagemath/issues/704>`__
140
141
  to upstream projects,
141
142
  - inviting collaborations with upstream projects,
142
143
  - `building a professional, respectful, inclusive
143
144
  community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
145
+ - `empowering Sage users to participate in the scientific Python ecosystem
146
+ <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
144
147
  - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
145
148
  serverless deployment with Javascript,
146
149
  - developing a native Windows port.
147
150
 
148
- `Full documentation <https://doc.sagemath.org/html/en/index.html>`__ is
151
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
149
152
  available online.
150
153
 
151
- passagemath attempts to support all major Linux distributions and recent versions of
152
- macOS. Use on Windows currently requires the use of Windows Subsystem for Linux or
153
- virtualization.
154
+ passagemath attempts to support and provides binary wheels suitable for
155
+ all major Linux distributions and recent versions of macOS.
154
156
 
155
- Complete sets of binary wheels are provided on PyPI for Python versions 3.9.x-3.12.x.
156
- Python 3.13.x is also supported, but some third-party packages are still missing wheels,
157
- so compilation from source is triggered for those.
157
+ Binary wheels for native Windows (x86_64) are are available for a subset of
158
+ the passagemath distributions. Use of the full functionality of passagemath
159
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
160
+ or virtualization.
161
+
162
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
158
163
 
159
164
 
160
165
  About this pip-installable distribution package
161
166
  -----------------------------------------------
162
167
 
163
- This pip-installable source distribution `sagemath-modules` is a distribution of a part of the Sage Library. It provides a small subset of the modules of the Sage library ("sagelib", `sagemath-standard`).
168
+ This pip-installable distribution ``passagemath-modules`` is a distribution of a part of the Sage Library. It provides a subset of the modules of the Sage library ("sagelib", `passagemath-standard`).
164
169
 
165
170
 
166
171
  What is included
167
172
  ----------------
168
173
 
169
- * `Vectors, Vector Spaces, Modules <https://doc.sagemath.org/html/en/reference/modules/index.html>`_
174
+ * `Vectors, Vector Spaces, Modules <https://passagemath.org/docs/latest/html/en/reference/modules/index.html>`_
170
175
 
171
- * `Matrices and Spaces of Matrices <https://doc.sagemath.org/html/en/reference/matrices/index.html>`_
176
+ * `Matrices and Spaces of Matrices <https://passagemath.org/docs/latest/html/en/reference/matrices/index.html>`_
172
177
 
173
178
  * Fields of real and complex numbers in arbitrary precision floating point arithmetic (using MPFR, GSL, mpmath, MPC)
174
179
 
175
- * `Free Modules with Combinatorial Bases <https://doc.sagemath.org/html/en/reference/combinat/sage/combinat/free_module.html>`_
180
+ * `Free Modules with Combinatorial Bases <https://passagemath.org/docs/latest/html/en/reference/combinat/sage/combinat/free_module.html>`_
176
181
 
177
- * `Tensor Modules <https://doc.sagemath.org/html/en/reference/tensor_free_modules/index.html>`_
182
+ * `Tensor Modules <https://passagemath.org/docs/latest/html/en/reference/tensor_free_modules/index.html>`_
178
183
 
179
- * `Additive Abelian Groups <https://doc.sagemath.org/html/en/reference/groups/sage/groups/additive_abelian/additive_abelian_group.html>`_
184
+ * `Additive Abelian Groups <https://passagemath.org/docs/latest/html/en/reference/groups/sage/groups/additive_abelian/additive_abelian_group.html>`_
180
185
 
181
- * `Matrix and Affine Groups <https://doc.sagemath.org/html/en/reference/groups/index.html#matrix-and-affine-groups>`_
186
+ * `Matrix and Affine Groups <https://passagemath.org/docs/latest/html/en/reference/groups/index.html#matrix-and-affine-groups>`_
182
187
 
183
- * `Root Systems <https://doc.sagemath.org/html/en/reference/combinat/sage/combinat/root_system/all.html#sage-combinat-root-system-all>`_
188
+ * `Root Systems <https://passagemath.org/docs/latest/html/en/reference/combinat/sage/combinat/root_system/all.html#sage-combinat-root-system-all>`_
184
189
 
185
- * `Quadratic Forms <https://doc.sagemath.org/html/en/reference/quadratic_forms/index.html>`_
190
+ * `Quadratic Forms <https://passagemath.org/docs/latest/html/en/reference/quadratic_forms/index.html>`_
186
191
 
187
- * `Ring Extensions <https://doc.sagemath.org/html/en/reference/rings/sage/rings/ring_extension.html>`_ and `Derivations <https://doc.sagemath.org/html/en/reference/rings/sage/rings/derivation.html>`_
192
+ * `Ring Extensions <https://passagemath.org/docs/latest/html/en/reference/rings/sage/rings/ring_extension.html>`_ and `Derivations <https://passagemath.org/docs/latest/html/en/reference/rings/sage/rings/derivation.html>`_
188
193
 
189
- * `Clifford, Exterior <https://doc.sagemath.org/html/en/reference/algebras/sage/algebras/clifford_algebra.html>`_, and `Weyl Algebras <https://doc.sagemath.org/html/en/reference/algebras/sage/algebras/weyl_algebra.html>`_
194
+ * `Clifford, Exterior <https://passagemath.org/docs/latest/html/en/reference/algebras/sage/algebras/clifford_algebra.html>`_, and `Weyl Algebras <https://passagemath.org/docs/latest/html/en/reference/algebras/sage/algebras/weyl_algebra.html>`_
190
195
 
191
- * `Chain Complexes, Homology <https://doc.sagemath.org/html/en/reference/homology/index.html>`_, `Free Resolutions <https://doc.sagemath.org/html/en/reference/resolutions/index.html>`_
196
+ * `Chain Complexes, Homology <https://passagemath.org/docs/latest/html/en/reference/homology/index.html>`_, `Free Resolutions <https://passagemath.org/docs/latest/html/en/reference/resolutions/index.html>`_
192
197
 
193
- * `Matroid Theory <https://doc.sagemath.org/html/en/reference/matroids/index.html>`_
198
+ * `Matroid Theory <https://passagemath.org/docs/latest/html/en/reference/matroids/index.html>`_
194
199
 
195
- * `Coding Theory <https://doc.sagemath.org/html/en/reference/coding/index.html>`_
200
+ * `Coding Theory <https://passagemath.org/docs/latest/html/en/reference/coding/index.html>`_
196
201
 
197
- * `Cryptography <https://doc.sagemath.org/html/en/reference/cryptography/index.html>`_
202
+ * `Cryptography <https://passagemath.org/docs/latest/html/en/reference/cryptography/index.html>`_
198
203
 
199
- * `Probability Spaces and Distributions <https://doc.sagemath.org/html/en/reference/probability/index.html>`_, `Statistics <https://doc.sagemath.org/html/en/reference/stats/index.html>`_
204
+ * `Probability Spaces and Distributions <https://passagemath.org/docs/latest/html/en/reference/probability/index.html>`_, `Statistics <https://passagemath.org/docs/latest/html/en/reference/stats/index.html>`_
200
205
 
201
206
 
202
207
  Examples
@@ -206,7 +211,7 @@ A quick way to try it out interactively::
206
211
 
207
212
  $ pipx run --pip-args="--prefer-binary" --spec "passagemath-modules[test]" ipython
208
213
 
209
- In [1]: from sage.all__sagemath_modules import *
214
+ In [1]: from passagemath_modules import *
210
215
 
211
216
  In [2]: M = matroids.Wheel(5); M
212
217
  Out[2]: Wheel(5): Regular matroid of rank 5 on 10 elements with 121 bases
@@ -223,24 +228,24 @@ A quick way to try it out interactively::
223
228
  Available as extras, from other distributions
224
229
  ---------------------------------------------
225
230
 
226
- ``pip install "sagemath-modules[RDF,CDF]"``
231
+ ``pip install "passagemath-modules[RDF,CDF]"``
227
232
  Linear algebra over fields of real and complex numbers using NumPy
228
233
 
229
- ``pip install "sagemath-modules[RBF,CBF]"``
234
+ ``pip install "passagemath-modules[RBF,CBF]"``
230
235
  Linear algebra over fields of real and complex numbers with ball arithmetic using FLINT/arb
231
236
 
232
- ``pip install "sagemath-modules[GF,GF2,GF2e,GFpn]"``
237
+ ``pip install "passagemath-modules[GF,GF2,GF2e,GFpn]"``
233
238
  Linear algebra over finite fields (various implementations)
234
239
 
235
- ``pip install "sagemath-modules[QQbar,NumberField,CyclotomicField]"``
240
+ ``pip install "passagemath-modules[QQbar,NumberField,CyclotomicField]"``
236
241
  Linear algebra over the algebraic numbers or number fields
237
242
 
238
- ``pip install "sagemath-modules[flint,fpylll,linbox]"``
243
+ ``pip install "passagemath-modules[flint,fpylll,linbox]"``
239
244
  Lattice basis reduction (LLL, BKZ)::
240
245
 
241
246
  $ pipx run --pip-args="--prefer-binary" --spec "passagemath-modules[flint,fpylll,linbox,test]" ipython
242
247
 
243
- In [1]: from sage.all__sagemath_modules import *
248
+ In [1]: from passagemath_modules import *
244
249
 
245
250
  In [2]: M = matrix(ZZ, [[1,2,3],[31,41,51],[101,201,301]])
246
251
 
@@ -250,16 +255,16 @@ Available as extras, from other distributions
250
255
  [-1 0 1]
251
256
  [ 1 1 1]
252
257
 
253
- `pip install "sagemath-modules[padics]"`
258
+ ``pip install "passagemath-modules[padics]"``
254
259
  Linear algebra over p-adic rings and fields
255
260
 
256
- `pip install "sagemath-modules[combinat]"`
261
+ ``pip install "passagemath-modules[combinat]"``
257
262
  Modules and algebras with combinatorial bases; algebraic combinatorics
258
263
 
259
- `pip install "sagemath-modules[invariant]"`
264
+ ``pip install "passagemath-modules[invariant]"``
260
265
  Submodules invariant under group actions
261
266
 
262
- `pip install "sagemath-modules[standard]"`
267
+ ``pip install "passagemath-modules[standard]"``
263
268
  All related features as in a standard installation of SageMath
264
269
 
265
270