passagemath-graphs 10.5.48__tar.gz → 10.6.1__tar.gz

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 (226) hide show
  1. {passagemath_graphs-10.5.48/passagemath_graphs.egg-info → passagemath_graphs-10.6.1}/PKG-INFO +28 -17
  2. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/README.rst +19 -12
  3. passagemath_graphs-10.6.1/VERSION.txt +1 -0
  4. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1/passagemath_graphs.egg-info}/PKG-INFO +28 -17
  5. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/passagemath_graphs.egg-info/SOURCES.txt +2 -0
  6. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/passagemath_graphs.egg-info/requires.txt +10 -2
  7. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/pyproject.toml +29 -9
  8. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/all__sagemath_graphs.py +3 -2
  9. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/abstract_tree.py +188 -17
  10. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/cluster_algebra_quiver/interact.py +1 -2
  11. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/cluster_algebra_quiver/mutation_type.py +518 -519
  12. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/cluster_algebra_quiver/quiver.py +233 -205
  13. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/covering_design.py +2 -6
  14. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/database.py +11 -10
  15. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/designs_pyx.pyx +2 -2
  16. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/evenly_distributed_sets.pyx +4 -4
  17. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/incidence_structures.py +2 -2
  18. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/latin_squares.py +53 -20
  19. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/orthogonal_arrays.py +2 -1
  20. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/orthogonal_arrays_find_recursive.pyx +22 -21
  21. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/resolvable_bibd.py +191 -157
  22. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/subhypergraph_search.pyx +4 -4
  23. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/twographs.py +2 -2
  24. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/finite_state_machine.py +6 -6
  25. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/nu_tamari_lattice.py +1 -1
  26. passagemath_graphs-10.6.1/sage/combinat/posets/bubble_shuffle.py +247 -0
  27. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/d_complete.py +3 -3
  28. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/elements.py +3 -3
  29. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/hasse_cython.pyx +1 -1
  30. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/hasse_diagram.py +16 -22
  31. passagemath_graphs-10.6.1/sage/combinat/posets/hochschild_lattice.py +158 -0
  32. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/incidence_algebras.py +14 -16
  33. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/lattices.py +51 -53
  34. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/linear_extensions.py +12 -13
  35. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/meson.build +2 -0
  36. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/moebius_algebra.py +4 -4
  37. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/poset_examples.py +73 -23
  38. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/posets.py +294 -103
  39. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/databases/knotinfo_db.py +2 -1
  40. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/asteroidal_triples.pyx +24 -3
  41. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/boost_graph.pxd +3 -3
  42. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/boost_interface.cpp +4 -3
  43. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/c_graph.pyx +1 -1
  44. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/dense_graph.pxd +5 -3
  45. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/dense_graph.pyx +44 -0
  46. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/static_sparse_backend.pyx +8 -5
  47. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/static_sparse_graph.pyx +86 -15
  48. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/bipartite_graph.py +59 -36
  49. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/centrality.pyx +82 -9
  50. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/cographs.py +1 -1
  51. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/comparability.pyx +64 -26
  52. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/convexity_properties.pyx +52 -9
  53. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/digraph.py +439 -95
  54. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/digraph_generators.py +176 -104
  55. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/dot2tex_utils.py +1 -1
  56. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generators/basic.py +1 -1
  57. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generators/distance_regular.pyx +2 -2
  58. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generators/families.py +40 -30
  59. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generators/random.py +2 -2
  60. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generators/smallgraphs.py +3 -3
  61. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generic_graph.py +559 -86
  62. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generic_graph_pyx.pyx +58 -11
  63. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/genus.pyx +3 -4
  64. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph.py +291 -8
  65. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_coloring.pyx +2 -2
  66. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_database.py +67 -12
  67. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/clique_separators.pyx +24 -3
  68. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/fast_digraph.pyx +1 -1
  69. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/graph_products.pyx +67 -21
  70. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/meson.build +7 -3
  71. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/slice_decomposition.pyx +34 -8
  72. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_generators.py +45 -32
  73. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_generators_pyx.pyx +15 -15
  74. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_latex.py +1 -1
  75. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_list.py +52 -9
  76. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_plot.py +7 -0
  77. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/hyperbolicity.pyx +5 -3
  78. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/isoperimetric_inequalities.pyx +42 -6
  79. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/line_graph.pyx +153 -37
  80. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/matching_covered_graph.py +87 -62
  81. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/meson.build +6 -2
  82. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/orientations.py +3 -18
  83. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/path_enumeration.pyx +2 -2
  84. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/strongly_regular_db.pyx +34 -34
  85. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/traversals.pyx +13 -12
  86. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/tutte_polynomial.py +1 -1
  87. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/views.pyx +1 -1
  88. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/weakly_chordal.pyx +50 -8
  89. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/knots/free_knotinfo_monoid.py +3 -3
  90. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/knots/knotinfo.py +102 -82
  91. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/knots/link.py +72 -39
  92. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/cubical_complex.py +4 -5
  93. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/delta_complex.py +4 -4
  94. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/simplicial_complex.py +0 -1
  95. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/simplicial_complex_catalog.py +6 -0
  96. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/simplicial_complex_examples.py +4 -16
  97. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/setup.py +1 -1
  98. passagemath_graphs-10.5.48/VERSION.txt +0 -1
  99. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/MANIFEST.in +0 -0
  100. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/passagemath_graphs.egg-info/dependency_links.txt +0 -0
  101. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/passagemath_graphs.egg-info/top_level.txt +0 -0
  102. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/all__sagemath_graphs.py +0 -0
  103. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/binary_tree.py +0 -0
  104. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/cluster_algebra_quiver/all.py +0 -0
  105. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/cluster_algebra_quiver/cluster_seed.py +0 -0
  106. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/cluster_algebra_quiver/mutation_class.py +0 -0
  107. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/cluster_algebra_quiver/quiver_mutation_type.py +0 -0
  108. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/MOLS_handbook_data.py +0 -0
  109. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/all.py +0 -0
  110. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/bibd.py +0 -0
  111. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/block_design.py +0 -0
  112. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/covering_array.py +0 -0
  113. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/design_catalog.py +0 -0
  114. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/designs_pyx.pxd +0 -0
  115. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/difference_family.py +0 -0
  116. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/difference_matrices.py +0 -0
  117. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/ext_rep.py +0 -0
  118. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/gen_quadrangles_with_spread.pyx +0 -0
  119. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/group_divisible_designs.py +0 -0
  120. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/meson.build +0 -0
  121. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/orthogonal_arrays_build_recursive.py +0 -0
  122. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/designs/steiner_quadruple_systems.py +0 -0
  123. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/finite_state_machine_generators.py +0 -0
  124. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/graph_path.py +0 -0
  125. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/interval_posets.py +0 -0
  126. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/ordered_tree.py +0 -0
  127. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/all.py +0 -0
  128. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/cartesian_product.py +0 -0
  129. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/forest.py +0 -0
  130. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/linear_extension_iterator.pyx +0 -0
  131. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/posets/mobile.py +0 -0
  132. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/rooted_tree.py +0 -0
  133. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/shard_order.py +0 -0
  134. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/tamari_lattices.py +0 -0
  135. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/combinat/yang_baxter_graph.py +0 -0
  136. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/databases/all__sagemath_graphs.py +0 -0
  137. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/ext_data/all__sagemath_graphs.py +0 -0
  138. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/ext_data/graphs/graph_plot_js.html +0 -0
  139. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/ext_data/kenzo/CP2.txt +0 -0
  140. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/ext_data/kenzo/CP3.txt +0 -0
  141. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/ext_data/kenzo/CP4.txt +0 -0
  142. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/ext_data/kenzo/README.txt +0 -0
  143. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/ext_data/kenzo/S4.txt +0 -0
  144. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/all.py +0 -0
  145. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/all.py +0 -0
  146. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/boost_graph.pyx +0 -0
  147. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/c_graph.pxd +0 -0
  148. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/graph_backends.pxd +0 -0
  149. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/graph_backends.pyx +0 -0
  150. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/meson.build +0 -0
  151. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/overview.py +0 -0
  152. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/sparse_graph.pxd +0 -0
  153. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/sparse_graph.pyx +0 -0
  154. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/static_dense_graph.pxd +0 -0
  155. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/static_dense_graph.pyx +0 -0
  156. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/static_sparse_backend.pxd +0 -0
  157. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/base/static_sparse_graph.pxd +0 -0
  158. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/connectivity.pxd +0 -0
  159. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/connectivity.pyx +0 -0
  160. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/convexity_properties.pxd +0 -0
  161. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/distances_all_pairs.pxd +0 -0
  162. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/distances_all_pairs.pyx +0 -0
  163. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/domination.py +0 -0
  164. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/edge_connectivity.pyx +0 -0
  165. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generators/all.py +0 -0
  166. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generators/chessboard.py +0 -0
  167. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generators/classical_geometries.py +0 -0
  168. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generators/degree_sequence.py +0 -0
  169. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generators/intersection.py +0 -0
  170. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generators/meson.build +0 -0
  171. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generators/platonic_solids.py +0 -0
  172. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generators/world_map.py +0 -0
  173. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/generic_graph_pyx.pxd +0 -0
  174. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/all.py +0 -0
  175. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/bandwidth.pyx +0 -0
  176. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/cutwidth.pyx +0 -0
  177. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/fast_digraph.pxd +0 -0
  178. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/modular_decomposition.hpp +0 -0
  179. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/modular_decomposition.pxd +0 -0
  180. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/modular_decomposition.pyx +0 -0
  181. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/slice_decomposition.pxd +0 -0
  182. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/tree_decomposition.pxd +0 -0
  183. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/tree_decomposition.pyx +0 -0
  184. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/vertex_separation.pxd +0 -0
  185. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_decompositions/vertex_separation.pyx +0 -0
  186. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_editor.py +0 -0
  187. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_input.py +0 -0
  188. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/graph_plot_js.py +0 -0
  189. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/hypergraph_generators.py +0 -0
  190. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/independent_sets.pxd +0 -0
  191. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/independent_sets.pyx +0 -0
  192. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/isgci.py +0 -0
  193. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/lovasz_theta.py +0 -0
  194. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/matching.py +0 -0
  195. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/partial_cube.py +0 -0
  196. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/pq_trees.py +0 -0
  197. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/print_graphs.py +0 -0
  198. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/schnyder.py +0 -0
  199. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/spanning_tree.pyx +0 -0
  200. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/traversals.pxd +0 -0
  201. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/trees.pxd +0 -0
  202. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/graphs/trees.pyx +0 -0
  203. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/groups/all__sagemath_graphs.py +0 -0
  204. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/groups/perm_gps/all__sagemath_graphs.py +0 -0
  205. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/groups/perm_gps/partn_ref/all__sagemath_graphs.py +0 -0
  206. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/groups/perm_gps/partn_ref/refinement_graphs.pxd +0 -0
  207. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/groups/perm_gps/partn_ref/refinement_graphs.pyx +0 -0
  208. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/knots/all.py +0 -0
  209. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/knots/gauss_code.py +0 -0
  210. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/knots/knot.py +0 -0
  211. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/knots/knot_table.py +0 -0
  212. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/sandpiles/all.py +0 -0
  213. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/sandpiles/examples.py +0 -0
  214. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/sandpiles/sandpile.py +0 -0
  215. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/all.py +0 -0
  216. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/cell_complex.py +0 -0
  217. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/filtered_simplicial_complex.py +0 -0
  218. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/moment_angle_complex.py +0 -0
  219. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/simplicial_complex_homset.py +0 -0
  220. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/simplicial_complex_morphism.py +0 -0
  221. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/simplicial_set.py +0 -0
  222. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/simplicial_set_catalog.py +0 -0
  223. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/simplicial_set_constructions.py +0 -0
  224. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/simplicial_set_examples.py +0 -0
  225. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/sage/topology/simplicial_set_morphism.py +0 -0
  226. {passagemath_graphs-10.5.48 → passagemath_graphs-10.6.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: passagemath-graphs
3
- Version: 10.5.48
3
+ Version: 10.6.1
4
4
  Summary: passagemath: Graphs, posets, hypergraphs, designs, abstract complexes, combinatorial polyhedra, abelian sandpiles, quivers
5
5
  Author-email: The Sage Developers <sage-support@googlegroups.com>
6
6
  Maintainer: Matthias Köppe, passagemath contributors
@@ -17,22 +17,25 @@ Classifier: Development Status :: 6 - Mature
17
17
  Classifier: Intended Audience :: Education
18
18
  Classifier: Intended Audience :: Science/Research
19
19
  Classifier: Operating System :: POSIX
20
+ Classifier: Operating System :: POSIX :: Linux
20
21
  Classifier: Operating System :: MacOS :: MacOS X
22
+ Classifier: Operating System :: Microsoft :: Windows
21
23
  Classifier: Programming Language :: Python :: 3 :: Only
22
- Classifier: Programming Language :: Python :: 3.9
23
24
  Classifier: Programming Language :: Python :: 3.10
24
25
  Classifier: Programming Language :: Python :: 3.11
25
26
  Classifier: Programming Language :: Python :: 3.12
26
27
  Classifier: Programming Language :: Python :: 3.13
27
28
  Classifier: Programming Language :: Python :: Implementation :: CPython
28
29
  Classifier: Topic :: Scientific/Engineering :: Mathematics
29
- Requires-Python: <3.14,>=3.9
30
+ Requires-Python: <3.14,>=3.10
30
31
  Description-Content-Type: text/x-rst
31
32
  Requires-Dist: gmpy2~=2.1.b999
33
+ Requires-Dist: cysignals<1.12.4; sys_platform == "win32"
32
34
  Requires-Dist: cysignals!=1.12.0,>=1.11.2
33
35
  Requires-Dist: memory_allocator
34
- Requires-Dist: passagemath-categories~=10.5.48.0
35
- Requires-Dist: passagemath-environment~=10.5.48.0
36
+ Requires-Dist: passagemath-categories~=10.6.1.0
37
+ Requires-Dist: passagemath-conf~=10.6.1.0; sys_platform != "win32"
38
+ Requires-Dist: passagemath-environment~=10.6.1.0
36
39
  Provides-Extra: test
37
40
  Requires-Dist: passagemath-repl; extra == "test"
38
41
  Provides-Extra: benzene
@@ -69,6 +72,7 @@ Provides-Extra: tdlib
69
72
  Requires-Dist: passagemath-tdlib; extra == "tdlib"
70
73
  Provides-Extra: combinat
71
74
  Requires-Dist: passagemath-combinat; extra == "combinat"
75
+ Provides-Extra: databases
72
76
  Provides-Extra: editor
73
77
  Requires-Dist: phitigra>=0.2.6; extra == "editor"
74
78
  Provides-Extra: groups
@@ -104,24 +108,25 @@ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
104
108
  developed 2005-2025 under the motto “Creating a Viable Open Source
105
109
  Alternative to Magma, Maple, Mathematica, and MATLAB”.
106
110
 
107
- The passagemath fork was created in October 2024 with the following
108
- goals:
111
+ The passagemath fork uses the motto "Creating a Free Passage Between the
112
+ Scientific Python Ecosystem and Mathematical Software Communities."
113
+ It was created in October 2024 with the following goals:
109
114
 
110
- - providing modularized installation with pip, thus completing a `major
111
- project started in 2020 in the Sage
112
- codebase <https://github.com/sagemath/sage/issues/29705>`__,
115
+ - providing modularized installation with pip,
113
116
  - establishing first-class membership in the scientific Python
114
117
  ecosystem,
115
118
  - giving `clear attribution of upstream
116
119
  projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
117
120
  - providing independently usable Python interfaces to upstream
118
121
  libraries,
119
- - providing `platform portability and integration testing
122
+ - offering `platform portability and integration testing
120
123
  services <https://github.com/passagemath/passagemath/issues/704>`__
121
124
  to upstream projects,
122
125
  - inviting collaborations with upstream projects,
123
126
  - `building a professional, respectful, inclusive
124
127
  community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
128
+ - `[empowering Sage users to participate in the scientific Python ecosystem
129
+ <https://github.com/passagemath/passagemath/issues/248](https://github.com/passagemath/passagemath/issues/248)https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
125
130
  - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
126
131
  serverless deployment with Javascript,
127
132
  - developing a native Windows port.
@@ -129,13 +134,19 @@ goals:
129
134
  `Full documentation <https://doc.sagemath.org/html/en/index.html>`__ is
130
135
  available online.
131
136
 
132
- passagemath attempts to support all major Linux distributions and recent versions of
133
- macOS. Use on Windows currently requires the use of Windows Subsystem for Linux or
134
- virtualization.
137
+ passagemath attempts to support and provides binary wheels suitable for
138
+ all major Linux distributions and recent versions of macOS.
135
139
 
136
- Complete sets of binary wheels are provided on PyPI for Python versions 3.9.x-3.12.x.
137
- Python 3.13.x is also supported, but some third-party packages are still missing wheels,
138
- so compilation from source is triggered for those.
140
+ For the Linux aarch64 (ARM) platform, some third-party packages are still missing wheels;
141
+ see ` <https://github.com/passagemath/passagemath?tab=readme-ov-file#full-installation-of-passagemath-from-binary-wheels-on-pypi>`__
142
+ for instructions for building them from source.
143
+
144
+ Binary wheels for native Windows (x86_64) are are available for a subset of
145
+ the passagemath distributions. Use of the full functionality of passagemath
146
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
147
+ or virtualization.
148
+
149
+ The supported Python versions in the passagemath 10.6.x series are 3.9.x-3.13.x.
139
150
 
140
151
 
141
152
  About this pip-installable distribution package
@@ -10,24 +10,25 @@ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
10
10
  developed 2005-2025 under the motto “Creating a Viable Open Source
11
11
  Alternative to Magma, Maple, Mathematica, and MATLAB”.
12
12
 
13
- The passagemath fork was created in October 2024 with the following
14
- goals:
13
+ The passagemath fork uses the motto "Creating a Free Passage Between the
14
+ Scientific Python Ecosystem and Mathematical Software Communities."
15
+ It was created in October 2024 with the following goals:
15
16
 
16
- - providing modularized installation with pip, thus completing a `major
17
- project started in 2020 in the Sage
18
- codebase <https://github.com/sagemath/sage/issues/29705>`__,
17
+ - providing modularized installation with pip,
19
18
  - establishing first-class membership in the scientific Python
20
19
  ecosystem,
21
20
  - giving `clear attribution of upstream
22
21
  projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
23
22
  - providing independently usable Python interfaces to upstream
24
23
  libraries,
25
- - providing `platform portability and integration testing
24
+ - offering `platform portability and integration testing
26
25
  services <https://github.com/passagemath/passagemath/issues/704>`__
27
26
  to upstream projects,
28
27
  - inviting collaborations with upstream projects,
29
28
  - `building a professional, respectful, inclusive
30
29
  community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
30
+ - `[empowering Sage users to participate in the scientific Python ecosystem
31
+ <https://github.com/passagemath/passagemath/issues/248](https://github.com/passagemath/passagemath/issues/248)https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
31
32
  - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
32
33
  serverless deployment with Javascript,
33
34
  - developing a native Windows port.
@@ -35,13 +36,19 @@ goals:
35
36
  `Full documentation <https://doc.sagemath.org/html/en/index.html>`__ is
36
37
  available online.
37
38
 
38
- passagemath attempts to support all major Linux distributions and recent versions of
39
- macOS. Use on Windows currently requires the use of Windows Subsystem for Linux or
40
- virtualization.
39
+ passagemath attempts to support and provides binary wheels suitable for
40
+ all major Linux distributions and recent versions of macOS.
41
41
 
42
- Complete sets of binary wheels are provided on PyPI for Python versions 3.9.x-3.12.x.
43
- Python 3.13.x is also supported, but some third-party packages are still missing wheels,
44
- so compilation from source is triggered for those.
42
+ For the Linux aarch64 (ARM) platform, some third-party packages are still missing wheels;
43
+ see ` <https://github.com/passagemath/passagemath?tab=readme-ov-file#full-installation-of-passagemath-from-binary-wheels-on-pypi>`__
44
+ for instructions for building them from source.
45
+
46
+ Binary wheels for native Windows (x86_64) are are available for a subset of
47
+ the passagemath distributions. Use of the full functionality of passagemath
48
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
49
+ or virtualization.
50
+
51
+ The supported Python versions in the passagemath 10.6.x series are 3.9.x-3.13.x.
45
52
 
46
53
 
47
54
  About this pip-installable distribution package
@@ -0,0 +1 @@
1
+ 10.6.1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: passagemath-graphs
3
- Version: 10.5.48
3
+ Version: 10.6.1
4
4
  Summary: passagemath: Graphs, posets, hypergraphs, designs, abstract complexes, combinatorial polyhedra, abelian sandpiles, quivers
5
5
  Author-email: The Sage Developers <sage-support@googlegroups.com>
6
6
  Maintainer: Matthias Köppe, passagemath contributors
@@ -17,22 +17,25 @@ Classifier: Development Status :: 6 - Mature
17
17
  Classifier: Intended Audience :: Education
18
18
  Classifier: Intended Audience :: Science/Research
19
19
  Classifier: Operating System :: POSIX
20
+ Classifier: Operating System :: POSIX :: Linux
20
21
  Classifier: Operating System :: MacOS :: MacOS X
22
+ Classifier: Operating System :: Microsoft :: Windows
21
23
  Classifier: Programming Language :: Python :: 3 :: Only
22
- Classifier: Programming Language :: Python :: 3.9
23
24
  Classifier: Programming Language :: Python :: 3.10
24
25
  Classifier: Programming Language :: Python :: 3.11
25
26
  Classifier: Programming Language :: Python :: 3.12
26
27
  Classifier: Programming Language :: Python :: 3.13
27
28
  Classifier: Programming Language :: Python :: Implementation :: CPython
28
29
  Classifier: Topic :: Scientific/Engineering :: Mathematics
29
- Requires-Python: <3.14,>=3.9
30
+ Requires-Python: <3.14,>=3.10
30
31
  Description-Content-Type: text/x-rst
31
32
  Requires-Dist: gmpy2~=2.1.b999
33
+ Requires-Dist: cysignals<1.12.4; sys_platform == "win32"
32
34
  Requires-Dist: cysignals!=1.12.0,>=1.11.2
33
35
  Requires-Dist: memory_allocator
34
- Requires-Dist: passagemath-categories~=10.5.48.0
35
- Requires-Dist: passagemath-environment~=10.5.48.0
36
+ Requires-Dist: passagemath-categories~=10.6.1.0
37
+ Requires-Dist: passagemath-conf~=10.6.1.0; sys_platform != "win32"
38
+ Requires-Dist: passagemath-environment~=10.6.1.0
36
39
  Provides-Extra: test
37
40
  Requires-Dist: passagemath-repl; extra == "test"
38
41
  Provides-Extra: benzene
@@ -69,6 +72,7 @@ Provides-Extra: tdlib
69
72
  Requires-Dist: passagemath-tdlib; extra == "tdlib"
70
73
  Provides-Extra: combinat
71
74
  Requires-Dist: passagemath-combinat; extra == "combinat"
75
+ Provides-Extra: databases
72
76
  Provides-Extra: editor
73
77
  Requires-Dist: phitigra>=0.2.6; extra == "editor"
74
78
  Provides-Extra: groups
@@ -104,24 +108,25 @@ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
104
108
  developed 2005-2025 under the motto “Creating a Viable Open Source
105
109
  Alternative to Magma, Maple, Mathematica, and MATLAB”.
106
110
 
107
- The passagemath fork was created in October 2024 with the following
108
- goals:
111
+ The passagemath fork uses the motto "Creating a Free Passage Between the
112
+ Scientific Python Ecosystem and Mathematical Software Communities."
113
+ It was created in October 2024 with the following goals:
109
114
 
110
- - providing modularized installation with pip, thus completing a `major
111
- project started in 2020 in the Sage
112
- codebase <https://github.com/sagemath/sage/issues/29705>`__,
115
+ - providing modularized installation with pip,
113
116
  - establishing first-class membership in the scientific Python
114
117
  ecosystem,
115
118
  - giving `clear attribution of upstream
116
119
  projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
117
120
  - providing independently usable Python interfaces to upstream
118
121
  libraries,
119
- - providing `platform portability and integration testing
122
+ - offering `platform portability and integration testing
120
123
  services <https://github.com/passagemath/passagemath/issues/704>`__
121
124
  to upstream projects,
122
125
  - inviting collaborations with upstream projects,
123
126
  - `building a professional, respectful, inclusive
124
127
  community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
128
+ - `[empowering Sage users to participate in the scientific Python ecosystem
129
+ <https://github.com/passagemath/passagemath/issues/248](https://github.com/passagemath/passagemath/issues/248)https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
125
130
  - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
126
131
  serverless deployment with Javascript,
127
132
  - developing a native Windows port.
@@ -129,13 +134,19 @@ goals:
129
134
  `Full documentation <https://doc.sagemath.org/html/en/index.html>`__ is
130
135
  available online.
131
136
 
132
- passagemath attempts to support all major Linux distributions and recent versions of
133
- macOS. Use on Windows currently requires the use of Windows Subsystem for Linux or
134
- virtualization.
137
+ passagemath attempts to support and provides binary wheels suitable for
138
+ all major Linux distributions and recent versions of macOS.
135
139
 
136
- Complete sets of binary wheels are provided on PyPI for Python versions 3.9.x-3.12.x.
137
- Python 3.13.x is also supported, but some third-party packages are still missing wheels,
138
- so compilation from source is triggered for those.
140
+ For the Linux aarch64 (ARM) platform, some third-party packages are still missing wheels;
141
+ see ` <https://github.com/passagemath/passagemath?tab=readme-ov-file#full-installation-of-passagemath-from-binary-wheels-on-pypi>`__
142
+ for instructions for building them from source.
143
+
144
+ Binary wheels for native Windows (x86_64) are are available for a subset of
145
+ the passagemath distributions. Use of the full functionality of passagemath
146
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
147
+ or virtualization.
148
+
149
+ The supported Python versions in the passagemath 10.6.x series are 3.9.x-3.13.x.
139
150
 
140
151
 
141
152
  About this pip-installable distribution package
@@ -56,12 +56,14 @@ sage/combinat/designs/steiner_quadruple_systems.py
56
56
  sage/combinat/designs/subhypergraph_search.pyx
57
57
  sage/combinat/designs/twographs.py
58
58
  sage/combinat/posets/all.py
59
+ sage/combinat/posets/bubble_shuffle.py
59
60
  sage/combinat/posets/cartesian_product.py
60
61
  sage/combinat/posets/d_complete.py
61
62
  sage/combinat/posets/elements.py
62
63
  sage/combinat/posets/forest.py
63
64
  sage/combinat/posets/hasse_cython.pyx
64
65
  sage/combinat/posets/hasse_diagram.py
66
+ sage/combinat/posets/hochschild_lattice.py
65
67
  sage/combinat/posets/incidence_algebras.py
66
68
  sage/combinat/posets/lattices.py
67
69
  sage/combinat/posets/linear_extension_iterator.pyx
@@ -1,8 +1,14 @@
1
1
  gmpy2~=2.1.b999
2
2
  cysignals!=1.12.0,>=1.11.2
3
3
  memory_allocator
4
- passagemath-categories~=10.5.48.0
5
- passagemath-environment~=10.5.48.0
4
+ passagemath-categories~=10.6.1.0
5
+ passagemath-environment~=10.6.1.0
6
+
7
+ [:sys_platform != "win32"]
8
+ passagemath-conf~=10.6.1.0
9
+
10
+ [:sys_platform == "win32"]
11
+ cysignals<1.12.4
6
12
 
7
13
  [benzene]
8
14
  passagemath-benzene
@@ -22,6 +28,8 @@ passagemath-cmr
22
28
  [combinat]
23
29
  passagemath-combinat
24
30
 
31
+ [databases]
32
+
25
33
  [editor]
26
34
  phitigra>=0.2.6
27
35
 
@@ -3,13 +3,14 @@
3
3
  # Minimum requirements for the build system to execute.
4
4
  requires = [
5
5
  'setuptools >= 77.0.0',
6
- 'passagemath-setup ~= 10.5.48.0',
6
+ 'passagemath-setup ~= 10.6.1.0',
7
7
  'pkgconfig',
8
- 'passagemath-environment ~= 10.5.48.0',
9
- 'passagemath-categories ~= 10.5.48.0',
8
+ 'passagemath-conf ~= 10.6.1.0 ; sys_platform != "win32"',
9
+ 'passagemath-environment ~= 10.6.1.0',
10
+ 'passagemath-categories ~= 10.6.1.0',
10
11
  'cython >=3.0, != 3.0.3, <4.0', 'cython >=3.0.8,<3.1.0',
11
12
  'gmpy2 ~=2.1.b999',
12
- 'cysignals >=1.11.2, != 1.12.0',
13
+ 'cysignals <1.12.4; sys_platform == "win32"', 'cysignals >=1.11.2, != 1.12.0',
13
14
  'memory_allocator',
14
15
  ]
15
16
  build-backend = "setuptools.build_meta"
@@ -19,10 +20,11 @@ name = "passagemath-graphs"
19
20
  description = "passagemath: Graphs, posets, hypergraphs, designs, abstract complexes, combinatorial polyhedra, abelian sandpiles, quivers"
20
21
  dependencies = [
21
22
  'gmpy2 ~=2.1.b999',
22
- 'cysignals >=1.11.2, != 1.12.0',
23
+ 'cysignals <1.12.4; sys_platform == "win32"', 'cysignals >=1.11.2, != 1.12.0',
23
24
  'memory_allocator',
24
- 'passagemath-categories ~= 10.5.48.0',
25
- 'passagemath-environment ~= 10.5.48.0',
25
+ 'passagemath-categories ~= 10.6.1.0',
26
+ 'passagemath-conf ~= 10.6.1.0 ; sys_platform != "win32"',
27
+ 'passagemath-environment ~= 10.6.1.0',
26
28
  ]
27
29
  dynamic = ["version"]
28
30
  license = "GPL-2.0-or-later"
@@ -36,9 +38,10 @@ classifiers = [
36
38
  "Intended Audience :: Education",
37
39
  "Intended Audience :: Science/Research",
38
40
  "Operating System :: POSIX",
41
+ "Operating System :: POSIX :: Linux",
39
42
  "Operating System :: MacOS :: MacOS X",
43
+ "Operating System :: Microsoft :: Windows",
40
44
  "Programming Language :: Python :: 3 :: Only",
41
- "Programming Language :: Python :: 3.9",
42
45
  "Programming Language :: Python :: 3.10",
43
46
  "Programming Language :: Python :: 3.11",
44
47
  "Programming Language :: Python :: 3.12",
@@ -46,7 +49,7 @@ classifiers = [
46
49
  "Programming Language :: Python :: Implementation :: CPython",
47
50
  "Topic :: Scientific/Engineering :: Mathematics",
48
51
  ]
49
- requires-python = ">=3.9, <3.14"
52
+ requires-python = ">=3.10, <3.14"
50
53
 
51
54
  [project.urls]
52
55
  "release notes" = "https://github.com/passagemath/passagemath/releases"
@@ -85,6 +88,7 @@ tdlib = ["passagemath-tdlib"]
85
88
 
86
89
  # features
87
90
  combinat = ["passagemath-combinat"]
91
+ databases = []
88
92
  editor = ['phitigra>=0.2.6',]
89
93
  groups = ["passagemath-groups", "passagemath-graphs[nauty]"]
90
94
  homology = ["passagemath-modules"]
@@ -101,6 +105,22 @@ standard = [
101
105
  "passagemath-plot[tachyon]",
102
106
  ]
103
107
 
108
+ [tool.cibuildwheel.linux]
109
+ # Unfortunately CIBW_REPAIR_WHEEL_COMMAND does not expand {project} (and other placeholders),
110
+ # so there is no clean way to refer to the repair_wheel.py script
111
+ # https://github.com/pypa/cibuildwheel/issues/1931
112
+ repair-wheel-command = [
113
+ 'python3 -m pip install passagemath-conf auditwheel',
114
+ 'python3 pkgs/sagemath-graphs/repair_wheel.py {wheel}',
115
+ 'auditwheel repair -w {dest_dir} {wheel}',
116
+ ]
117
+ [tool.cibuildwheel.macos]
118
+ repair-wheel-command = [
119
+ 'python3 -m pip install passagemath-conf auditwheel',
120
+ 'python3 pkgs/sagemath-graphs/repair_wheel.py {wheel}',
121
+ 'delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}',
122
+ ]
123
+
104
124
  [tool.setuptools]
105
125
  include-package-data = false
106
126
 
@@ -1,4 +1,5 @@
1
1
  # sage_setup: distribution = sagemath-graphs
2
+ # delvewheel: patch
2
3
  r"""
3
4
  Top level of the distribution package sagemath-graphs
4
5
 
@@ -26,9 +27,9 @@ try: # extra
26
27
  except ImportError:
27
28
  pass
28
29
 
29
- from sage.graphs.all import *
30
+ from sage.graphs.all import *
30
31
 
31
- from sage.topology.all import *
32
+ from sage.topology.all import *
32
33
 
33
34
  from sage.combinat.all__sagemath_graphs import *
34
35