regina 7.3.1__cp312-cp312-macosx_11_0_arm64.whl → 7.3.1.1__cp312-cp312-macosx_11_0_arm64.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.

Potentially problematic release.


This version of regina might be problematic. Click here for more details.

@@ -252,6 +252,7 @@ dump(t.vertex(0))
252
252
  dump(t.vertex(0).front())
253
253
  dump(t.edge(0))
254
254
  dump(t.edge(0).front())
255
+ dump(t.edges())
255
256
  dump(t.triangle(0))
256
257
  dump(t.triangle(0).front())
257
258
  dump(t.tetrahedron(0))
@@ -14,6 +14,11 @@
14
14
  # corresponding *.out files. Any mismatches are considered to be test
15
15
  # failures.
16
16
  #
17
+ # If the output is expected to differ between pybind11 2.x.y (used with
18
+ # Python 3.11 and earlier) vs pybind11 3.x.y (used with Python 3.12 and
19
+ # later), there should instead be two output files: *.out.v2 and *.out.v3.
20
+ # If *.out is present, this will take priority over *.out.v2 and/or *.out.v3.
21
+ #
17
22
  # This script MUST be run from the python/testsuite directory in the
18
23
  # build tree. It runs regina-python directly out of the build tree.
19
24
  # It does not require regina to be installed on the system (and indeed
@@ -53,6 +58,7 @@ set -e
53
58
  executable=../regina-python
54
59
  testdir='@BASH_CMAKE_SOURCE_DIR@/python/testsuite'
55
60
  testoutdir=`mktemp -d -t regina.XXX`
61
+ pybind11_version='@REGINA_PYBIND11_VERSION@'
56
62
 
57
63
  echo "---------------------------------------"
58
64
  echo "Test suite for Regina's python bindings"
@@ -88,6 +94,9 @@ while IFS= read -r -d $'\0' i; do
88
94
  found=1
89
95
  testname=`basename "$i"`
90
96
  expected="${i/.test/.out}"
97
+ if [ ! -e "$expected" ]; then
98
+ expected="$expected.v$pybind11_version"
99
+ fi
91
100
  observed="$testoutdir/${testname/.test/.out}"
92
101
  filter="$testdir/${testname/.test/.filter}"
93
102
 
@@ -15,7 +15,8 @@
15
15
  # the current directory; however, unlike testall it skips those tests
16
16
  # whose names are in a hard-coded blacklist. Similar to testall, this
17
17
  # script runs each test through the basic embedded Python interpreter and
18
- # compares the results byte-by-byte with the corresponding *.out files.
18
+ # compares the results byte-by-byte with the corresponding *.out files
19
+ # (or, if the output differs between pybind11 versions, *.out.v2 and *.out.v3).
19
20
  # Any mismatches or timeouts are considered to be test failures.
20
21
  #
21
22
  # This script MUST be run from the python/testsuite directory in the
@@ -56,6 +57,7 @@ set -e
56
57
  executable=./basic
57
58
  testdir='@BASH_CMAKE_SOURCE_DIR@/python/testsuite'
58
59
  testoutdir=`mktemp -d -t regina.XXX`
60
+ pybind11_version='@REGINA_PYBIND11_VERSION@'
59
61
 
60
62
  # REGINA_HOME can be deduced from the executable path, but on Windows this
61
63
  # deduction gives the wrong style of path (windows vs unix style) for use
@@ -65,6 +67,11 @@ export REGINA_HOME=../../engine
65
67
  # Cases that expect the python/testsuite directory as an argument:
66
68
  blacklist="file i18n memory1 orb pdf repr"
67
69
 
70
+ # The following cases implicitly import the threading module, which leads to a
71
+ # harmless but noisy ignored exception upon shutdown under python 3.12 and
72
+ # above. See: https://github.com/pybind/pybind11/issues/2197
73
+ blacklist="$blacklist docstrings"
74
+
68
75
  echo "----------------------------------------------------------------"
69
76
  echo "Test suite for python bindings with a basic embedded interpreter"
70
77
  echo "----------------------------------------------------------------"
@@ -157,6 +164,9 @@ while IFS= read -r -d $'\0' i; do
157
164
  found=1
158
165
  testname=`basename "$i"`
159
166
  expected="${i/.test/.out}"
167
+ if [ ! -e "$expected" ]; then
168
+ expected="$expected.v$pybind11_version"
169
+ fi
160
170
  observed="$testoutdir/${testname/.test/.out}"
161
171
  filter="$testdir/${testname/.test/.filter}"
162
172
 
@@ -0,0 +1,150 @@
1
+ #!/bin/bash
2
+ #
3
+ # Regina - A Normal Surface Theory Calculator
4
+ # Python Test Suite Runner
5
+ #
6
+ # Copyright (c) 2007-2025, Ben Burton
7
+ # For further details contact Ben Burton (bab@debian.org).
8
+ #
9
+ # Usage: testcallback
10
+ #
11
+ # Runs some simple tests to ensure that Regina's Python module is playing
12
+ # nicely with pure Python callbacks in embedded subinterpreters.
13
+ #
14
+ # This script MUST be run from the python/testsuite directory in the
15
+ # build tree. It runs everything directly out of the build tree.
16
+ # It does not require regina to be installed on the system (and indeed
17
+ # it ignores any installation that it might find).
18
+ #
19
+ # This program is free software; you can redistribute it and/or
20
+ # modify it under the terms of the GNU General Public License as
21
+ # published by the Free Software Foundation; either version 2 of the
22
+ # License, or (at your option) any later version.
23
+ #
24
+ # As an exception, when this program is distributed through (i) the
25
+ # App Store by Apple Inc.; (ii) the Mac App Store by Apple Inc.; or
26
+ # (iii) Google Play by Google Inc., then that store may impose any
27
+ # digital rights management, device limits and/or redistribution
28
+ # restrictions that are required by its terms of service.
29
+ #
30
+ # This program is distributed in the hope that it will be useful, but
31
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
32
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
33
+ # General Public License for more details.
34
+ #
35
+ # You should have received a copy of the GNU General Public
36
+ # License along with this program; if not, write to the Free
37
+ # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
38
+ # MA 02110-1301, USA.
39
+
40
+ set -e
41
+
42
+ # To see the output, you need to run:
43
+ # make test ARGS="-V"
44
+
45
+ executable=./basic_callback
46
+ testdir='@BASH_CMAKE_SOURCE_DIR@/python/testsuite'
47
+ testoutdir=`mktemp -d -t regina.XXX`
48
+
49
+ # REGINA_HOME can be deduced from the executable path, but on Windows this
50
+ # deduction gives the wrong style of path (windows vs unix style) for use
51
+ # with the embedded basic Python interpreter. Fix it explicitly here.
52
+ export REGINA_HOME=../../engine
53
+
54
+ echo "---------------------------------------------------------"
55
+ echo "Testing pure python callbacks in embedded subinterpreters"
56
+ echo "---------------------------------------------------------"
57
+ echo
58
+
59
+ if ! test -f ../../CMakeCache.txt -a -f "$executable"; then
60
+ echo "ERROR: You do not appear to be within the python/testsuite directory"
61
+ echo " in the build tree. This script must be run from directly"
62
+ echo " within the build tree (where you ran cmake)."
63
+ echo " Please change into the python/testsuite directory in the"
64
+ echo " build tree and try again."
65
+ exit 1
66
+ fi
67
+
68
+ # Make sure Python will be able to import regina.
69
+ os='@CMAKE_SYSTEM_NAME@'
70
+ case "$os" in
71
+ Darwin )
72
+ export DYLD_LIBRARY_PATH="../../engine:$DYLD_LIBRARY_PATH"
73
+ export PYTHONPATH="..:$PYTHONPATH"
74
+ ;;
75
+ Windows )
76
+ # The PYTHONHOME directory is incorrectly hard-coded in msys2.
77
+ # Work out the correct value by asking the python interpreter directly.
78
+ PYTHON='@BASH_Python_EXECUTABLE@'
79
+ if [ ! -e "$PYTHON" ]; then
80
+ echo "ERROR: Python interpreter not found: $PYTHON"
81
+ exit 1
82
+ fi
83
+ export PYTHONHOME="`"$PYTHON" -c 'import sys; print(sys.prefix)'`"
84
+ if [ ! -d "$PYTHONHOME" ]; then
85
+ echo "ERROR: Python home not found: $PYTHONHOME"
86
+ exit 1
87
+ fi
88
+
89
+ export PATH="../../engine:$PATH"
90
+ export PYTHONPATH="..;$PYTHONPATH"
91
+ ;;
92
+ * )
93
+ export LD_LIBRARY_PATH="../../engine:$LD_LIBRARY_PATH"
94
+ export PYTHONPATH="..:$PYTHONPATH"
95
+ ;;
96
+ esac
97
+
98
+ expected="$testdir/basic_callback.out"
99
+ observed="$testoutdir/basic_callback.out"
100
+
101
+ # Since we have "set -e", we need "&& dummy=" to prevent this line to
102
+ # just exit the bash script when the test has non-zero exit code.
103
+ # We use && as opposed to || in order to preserve the exit code from
104
+ # the first command.
105
+ #
106
+ # The code that unsets TERM fixes an issue seen some years ago on
107
+ # Fedora, where (as a result of a more exotic TERM setting) unprintable
108
+ # characters were being dumped at the beginning of the python output.
109
+ #
110
+ echo -n "Running callback test ... "
111
+ TERM= PYTHONIOENCODING=utf8 "$executable" > "$observed" 2>&1 && dummy=
112
+
113
+ # Catch exitcode.
114
+ exitcode=$?
115
+
116
+ # Branch based on exit code.
117
+ broken=
118
+ if [ "$exitcode" -ne 0 ]; then
119
+ echo "FAILED (exit code $exitcode)"
120
+ echo " Output was:"
121
+ echo " ..."
122
+ tail -n 5 $observed | sed -e 's/^/ /'
123
+ broken=1
124
+ else
125
+ if ! ( diff --strip-trailing-cr "$expected" "$observed" > /dev/null ); then
126
+ echo "FAILED (output differs from expected)"
127
+ echo " Diff was:"
128
+ diff --strip-trailing-cr -u \
129
+ --label 'Expected output' --label 'Actual output' \
130
+ "$expected" "$observed" | head -n200 | sed -e 's/^/ /'
131
+ echo " ..."
132
+ broken=1
133
+ else
134
+ echo "ok"
135
+ rm -f "$observed"
136
+ fi
137
+ fi
138
+
139
+ if test -n "$broken"; then
140
+ echo
141
+ echo "The full output file(s) produced by Regina are in the directory:"
142
+ echo " $testoutdir"
143
+ exit 1
144
+ else
145
+ rmdir "$testoutdir"
146
+ fi
147
+
148
+ echo
149
+ echo "Test passed!"
150
+ exit 0
@@ -0,0 +1,150 @@
1
+ #!/bin/bash
2
+ #
3
+ # Regina - A Normal Surface Theory Calculator
4
+ # Python Test Suite Runner
5
+ #
6
+ # Copyright (c) 2007-2025, Ben Burton
7
+ # For further details contact Ben Burton (bab@debian.org).
8
+ #
9
+ # Usage: testsub
10
+ #
11
+ # Runs some simple tests to ensure that Regina's Python module is playing
12
+ # nicely with Python subinterpreters.
13
+ #
14
+ # This script MUST be run from the python/testsuite directory in the
15
+ # build tree. It runs everything directly out of the build tree.
16
+ # It does not require regina to be installed on the system (and indeed
17
+ # it ignores any installation that it might find).
18
+ #
19
+ # This program is free software; you can redistribute it and/or
20
+ # modify it under the terms of the GNU General Public License as
21
+ # published by the Free Software Foundation; either version 2 of the
22
+ # License, or (at your option) any later version.
23
+ #
24
+ # As an exception, when this program is distributed through (i) the
25
+ # App Store by Apple Inc.; (ii) the Mac App Store by Apple Inc.; or
26
+ # (iii) Google Play by Google Inc., then that store may impose any
27
+ # digital rights management, device limits and/or redistribution
28
+ # restrictions that are required by its terms of service.
29
+ #
30
+ # This program is distributed in the hope that it will be useful, but
31
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
32
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
33
+ # General Public License for more details.
34
+ #
35
+ # You should have received a copy of the GNU General Public
36
+ # License along with this program; if not, write to the Free
37
+ # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
38
+ # MA 02110-1301, USA.
39
+
40
+ set -e
41
+
42
+ # To see the output, you need to run:
43
+ # make test ARGS="-V"
44
+
45
+ executable=./basic_sub
46
+ testdir='@BASH_CMAKE_SOURCE_DIR@/python/testsuite'
47
+ testoutdir=`mktemp -d -t regina.XXX`
48
+
49
+ # REGINA_HOME can be deduced from the executable path, but on Windows this
50
+ # deduction gives the wrong style of path (windows vs unix style) for use
51
+ # with the embedded basic Python interpreter. Fix it explicitly here.
52
+ export REGINA_HOME=../../engine
53
+
54
+ echo "---------------------------------------------------"
55
+ echo "Testing python bindings in embedded subinterpreters"
56
+ echo "---------------------------------------------------"
57
+ echo
58
+
59
+ if ! test -f ../../CMakeCache.txt -a -f "$executable"; then
60
+ echo "ERROR: You do not appear to be within the python/testsuite directory"
61
+ echo " in the build tree. This script must be run from directly"
62
+ echo " within the build tree (where you ran cmake)."
63
+ echo " Please change into the python/testsuite directory in the"
64
+ echo " build tree and try again."
65
+ exit 1
66
+ fi
67
+
68
+ # Make sure Python will be able to import regina.
69
+ os='@CMAKE_SYSTEM_NAME@'
70
+ case "$os" in
71
+ Darwin )
72
+ export DYLD_LIBRARY_PATH="../../engine:$DYLD_LIBRARY_PATH"
73
+ export PYTHONPATH="..:$PYTHONPATH"
74
+ ;;
75
+ Windows )
76
+ # The PYTHONHOME directory is incorrectly hard-coded in msys2.
77
+ # Work out the correct value by asking the python interpreter directly.
78
+ PYTHON='@BASH_Python_EXECUTABLE@'
79
+ if [ ! -e "$PYTHON" ]; then
80
+ echo "ERROR: Python interpreter not found: $PYTHON"
81
+ exit 1
82
+ fi
83
+ export PYTHONHOME="`"$PYTHON" -c 'import sys; print(sys.prefix)'`"
84
+ if [ ! -d "$PYTHONHOME" ]; then
85
+ echo "ERROR: Python home not found: $PYTHONHOME"
86
+ exit 1
87
+ fi
88
+
89
+ export PATH="../../engine:$PATH"
90
+ export PYTHONPATH="..;$PYTHONPATH"
91
+ ;;
92
+ * )
93
+ export LD_LIBRARY_PATH="../../engine:$LD_LIBRARY_PATH"
94
+ export PYTHONPATH="..:$PYTHONPATH"
95
+ ;;
96
+ esac
97
+
98
+ expected="$testdir/basic_sub.out"
99
+ observed="$testoutdir/basic_sub.out"
100
+
101
+ # Since we have "set -e", we need "&& dummy=" to prevent this line to
102
+ # just exit the bash script when the test has non-zero exit code.
103
+ # We use && as opposed to || in order to preserve the exit code from
104
+ # the first command.
105
+ #
106
+ # The code that unsets TERM fixes an issue seen some years ago on
107
+ # Fedora, where (as a result of a more exotic TERM setting) unprintable
108
+ # characters were being dumped at the beginning of the python output.
109
+ #
110
+ echo -n "Running subinterpreter test ... "
111
+ TERM= PYTHONIOENCODING=utf8 "$executable" > "$observed" 2>&1 && dummy=
112
+
113
+ # Catch exitcode.
114
+ exitcode=$?
115
+
116
+ # Branch based on exit code.
117
+ broken=
118
+ if [ "$exitcode" -ne 0 ]; then
119
+ echo "FAILED (exit code $exitcode)"
120
+ echo " Output was:"
121
+ echo " ..."
122
+ tail -n 5 $observed | sed -e 's/^/ /'
123
+ broken=1
124
+ else
125
+ if ! ( diff --strip-trailing-cr "$expected" "$observed" > /dev/null ); then
126
+ echo "FAILED (output differs from expected)"
127
+ echo " Diff was:"
128
+ diff --strip-trailing-cr -u \
129
+ --label 'Expected output' --label 'Actual output' \
130
+ "$expected" "$observed" | head -n200 | sed -e 's/^/ /'
131
+ echo " ..."
132
+ broken=1
133
+ else
134
+ echo "ok"
135
+ rm -f "$observed"
136
+ fi
137
+ fi
138
+
139
+ if test -n "$broken"; then
140
+ echo
141
+ echo "The full output file(s) produced by Regina are in the directory:"
142
+ echo " $testoutdir"
143
+ exit 1
144
+ else
145
+ rmdir "$testoutdir"
146
+ fi
147
+
148
+ echo
149
+ echo "Test passed!"
150
+ exit 0
@@ -1,5 +1,5 @@
1
- version = '7.3.1'
2
- release_date = 'March 30, 2023'
1
+ version = '7.3.1.1'
2
+ release_date = 'July 20, 2024'
3
3
 
4
4
 
5
5
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: regina
3
- Version: 7.3.1
3
+ Version: 7.3.1.1
4
4
  Summary: Regina-Normal
5
5
  Home-page: http://github.com/3-manifolds/regina_wheels
6
6
  Author: The Regina developers, Marc Culler, Nathan Dunfield, and Matthias Goerner
@@ -19,6 +19,16 @@ Classifier: Programming Language :: Cython
19
19
  Classifier: Topic :: Scientific/Engineering :: Mathematics
20
20
  Requires-Python: >=3.6
21
21
  Description-Content-Type: text/x-rst
22
+ Dynamic: author
23
+ Dynamic: author-email
24
+ Dynamic: classifier
25
+ Dynamic: description
26
+ Dynamic: description-content-type
27
+ Dynamic: home-page
28
+ Dynamic: keywords
29
+ Dynamic: license
30
+ Dynamic: requires-python
31
+ Dynamic: summary
22
32
 
23
33
  Self-contained Python packages of Regina
24
34
  ========================================
@@ -30,9 +40,8 @@ goal here is to provide self-contained binaries ("wheels") of Regina's
30
40
  Python package that can be installed in seconds from Python's `PyPI`_
31
41
  package repository using ``pip``.
32
42
 
33
- The current version is somewhat experimental and is based on a
34
- pre-release version of Regina; it is offered for macOS (10.14 and
35
- newer) and Linux, but not Windows. To try it out, do::
43
+ It is offered for macOS (10.15 and newer) and Linux, but not
44
+ Windows. To try it out, do::
36
45
 
37
46
  python3 -m pip install --user --upgrade "regina>=7.0"
38
47
  python3 -m regina.test
@@ -1,11 +1,7 @@
1
- regina-7.3.1.dist-info/RECORD,,
2
- regina-7.3.1.dist-info/WHEEL,sha256=Vo9YTsjXxZ5SWdH4n69oS5jU3YTIi3eHk0n-aUcTtlw,110
3
- regina-7.3.1.dist-info/top_level.txt,sha256=SE8n0D2oQ01rniclTvoQoxiquFfUcnjGpHZrJKji6z8,69
4
- regina-7.3.1.dist-info/METADATA,sha256=1C1fo06XZjOXFFLfJ-Wq0H_mCI_BoHJ4Q3_BKyk1Lmo,3771
5
1
  regina/libgmpxx.4.dylib,sha256=ywqDJInMypiSYNwLUNC7lVmaJoofmdQ3hhGyP2owgj8,88528
6
2
  regina/__init__.py,sha256=pdHUei4znR6VnEC3y5_1vkcbgkyNMQaqfVqZ0gD_y6M,8223
7
3
  regina/test.py,sha256=iXHrTumyBxNZhu10J29EtoNKwTOAzgiXzgHGGNq_Jvc,128
8
- regina/engine.cpython-312-darwin.so,sha256=jXRNJre4svQ_bnGdvsFvkf6QyVg4PIowuDkdskJRWq0,62033248
4
+ regina/engine.cpython-312-darwin.so,sha256=Jgt02bjtbEsIieWa9G_e4xfkPuQ4-kPCxY-iDY2XJDA,67575088
9
5
  regina/sageSetup.py,sha256=S9tEKQd4ICYp1hQvAW_Oug390mO9QrkL7j1K-urqTbk,1341
10
6
  regina/libgmp.10.dylib,sha256=MX16SszQVdjeAVQQZWp9JB6NjpItePZHTUKm4fq8aHs,767920
11
7
  regina/plainCompleter.py,sha256=ILwPjEqALu_uB8QuNjP26YHJ6LvXCZjSZS24YUsKAyQ,7982
@@ -16,8 +12,8 @@ regina/pyCensus/__init__.py,sha256=zHZIE8ILWhTuV8oFJ_tnyXaHM9Hf6pXCz5EkalWL_rs,5
16
12
  regina/pyCensus/christy-knots-links.tdb,sha256=0pGzIiN_kK6AzPT1ahfsroM542xEziKSZo6NynxHsTc,34560
17
13
  regina/pyCensus/cusped-hyp-or-census-9.tdb,sha256=wmta_gF99q3p33mtp8CIgzYK_R--LuKWRpAjLwef52c,1818112
18
14
  regina/pyCensus/closed-or-census-11.tdb,sha256=3Vff-ed8mecvatlbupXIje-FXzzI8iCkv3yhMTzBeSo,714752
19
- regina/sageRegina/config.py,sha256=yceDYZpp8CUwR_bUQa7jD2ds0Yvb2KWzoyy7FvkRpsw,401
20
- regina/sageRegina/version.py,sha256=mAwwYu5M7XN4to1uQdf2p8fiAvCNOJvh7SCDewv1WbE,53
15
+ regina/sageRegina/config.py,sha256=Ii99LHNRWEBlHxRGKOi2Pan5X3afDOho7RWMX036AUg,380
16
+ regina/sageRegina/version.py,sha256=EfSluimGCqnW0ggAgEBdihKsz9v4xJe3imNcT93h89A,54
21
17
  regina/sageRegina/__init__.py,sha256=JTMX3XXpJqjr4n9VOX6bARB0uUEv7knrdSxlGRl95wQ,43
22
18
  regina/sageRegina/test.py,sha256=Dr4EPds4-JGN9hmeEg7suMfORuZ5BLYZmw7b4inBESc,3962
23
19
  regina/sageRegina/testsuite/plantri.test,sha256=uJkpxEbR32ef-sNC8rEZgyFslYFtVpxgX3comN1xDB8,2161
@@ -33,18 +29,17 @@ regina/sageRegina/testsuite/groups.test,sha256=PRB5LLJAJj1v_qDKbGhLkeyf_xBt45Cf_
33
29
  regina/sageRegina/testsuite/memory1.out,sha256=c5jOJJfbbckVDtDl4m5DpCb3ZZEd-FD5hjMqLlfFMaQ,608
34
30
  regina/sageRegina/testsuite/skeleton.test,sha256=2IYHUsVjXHhgMiqte2TqqrLLpqnQzbUYcADDv8Kan8Y,1758
35
31
  regina/sageRegina/testsuite/bytes.test,sha256=-CUxaXPsvKfOlieR7JUNOyJPZ9Gr-PsDRU8-naxJhv8,2210
36
- regina/sageRegina/testsuite/testbasic.in,sha256=eijsAWkPrb22DowbNtnE5u2-RyYhO_ONlKVFnIUu3Z4,9304
32
+ regina/sageRegina/testsuite/testbasic.in,sha256=gjZFCkwrKgKBXtnbnIWjZvdbgcVmfG7DAtIEESEuG3k,9756
37
33
  regina/sageRegina/testsuite/flype.out,sha256=_Kncz9zvDe9EJWYVXoP7lKUzfm5_U-cRVc0Be8qb5pY,4401
38
34
  regina/sageRegina/testsuite/safeheldtype_basic.out,sha256=KCcn26jBlU_v56eUsM_B_OEEG3SaMImX_THl5zsjR6s,365
39
35
  regina/sageRegina/testsuite/equality.test,sha256=5mgWIBUAYQUfXiuK2uL1-b3Daki25PUlTTH7AyF2QOo,11157
40
36
  regina/sageRegina/testsuite/pdf.test,sha256=XtaNAOxM2f6QZgzy3uF-ZX4qGJ_lreEuRuQQHVFm0oo,1737
41
- regina/sageRegina/testsuite/CMakeLists.txt,sha256=dgh6XnZq5QQHR4uZORMjxKuNdFNFedGmqqkY1wmUr80,921
37
+ regina/sageRegina/testsuite/CMakeLists.txt,sha256=LJYuHuq1M672_5t9SQrr5dNeVb5jDfmg75MP_yuM--w,1846
42
38
  regina/sageRegina/testsuite/safeheldtype_packet.out,sha256=8jXJSrlPleFhxKqoG4A4PrSrN3g9eG1zhvn0WGwDXVU,1319
43
39
  regina/sageRegina/testsuite/utf8.test,sha256=PSYDInfbkPHkD_-HBnckLI-ZHFYw8dyNkORaESZlayk,2344
44
40
  regina/sageRegina/testsuite/census.test,sha256=wP4BzfslB6PMd0-IGi06CmjuNmS-ucE87z3kQQJp1xA,4420
45
41
  regina/sageRegina/testsuite/trigeneral.out,sha256=nedXUjVQ-nCFY7nqimKeftB20HtUR97zJ-d-1oh3DNQ,30439
46
42
  regina/sageRegina/testsuite/listener.out,sha256=Y8yknKa5TDRgB-_4ZEY3SLyil4K35zeA8aClAch7fGo,816
47
- regina/sageRegina/testsuite/basic.cpp,sha256=9VWsHCT0ZWiVlRqgCAaUspIXpCt1pPngz0T9HshiyfU,8826
48
43
  regina/sageRegina/testsuite/memory1.test,sha256=HjOMgQzQH4bZU0ufDdYAuiNWSjNzc_OzIAugJIs5SIs,4622
49
44
  regina/sageRegina/testsuite/alltypes.test,sha256=Xbd4s2mlJ5bG6kINY_nuXlW2QT5PrJNvS3GqpdXNDbU,3069
50
45
  regina/sageRegina/testsuite/euler.out,sha256=6xQEdq-e6qbero29FEyGNPMsW2vWGBF103_z1opJnmY,436
@@ -52,28 +47,30 @@ regina/sageRegina/testsuite/census.out,sha256=uOLClZfFvvuMtCblBvIKI_3a7AW5KNCqdb
52
47
  regina/sageRegina/testsuite/dodec.orb,sha256=khKqZ0WBiQLB-NOUbiiP4F-KG8NTRsxrTuRZGwacDds,27275
53
48
  regina/sageRegina/testsuite/clone.out,sha256=EygmN5zCSUQZ3lLtCH1WRsbTClRDEKJByM756N77mbM,90
54
49
  regina/sageRegina/testsuite/callbacks.out,sha256=netSxC6ckx1rHQtkRyJ-IvUe9HRi88-dREfHrOd6e1U,13766
55
- regina/sageRegina/testsuite/iterators.out,sha256=19Qu8ZxD7txLEmEfH4bihK7vF1hyA5X5FmmEBgSZbJ0,2696
50
+ regina/sageRegina/testsuite/iterators.out,sha256=k69iyThUj6WEM7gGx8-3j_cpHIBVf2NyjazgKTBtHTI,4620
56
51
  regina/sageRegina/testsuite/enumerate.test,sha256=q--sGW3RtoypprI6_A7wHb3C4QJLLWYFClGw9ah6OUM,2262
57
52
  regina/sageRegina/testsuite/callbacks.test,sha256=6I0HCLk-wnQ95p-YbqQ8nCNurOP6-Gjd6lfIiMgWlFA,10056
58
53
  regina/sageRegina/testsuite/integer.test,sha256=IQ0NJp8mILO8yzAZApEblJuroZ5w6QRZLnxRMuMwaFE,2046
59
54
  regina/sageRegina/testsuite/flype.test,sha256=IwVw4THgg9vh8cMC9-eF5noEMFJNZLIxLtyBddC-eL8,1826
60
- regina/sageRegina/testsuite/iterators.test,sha256=ZDCIo31aoO0xVW4e2tGU-6HrV3usATYWgS8JoihKi-o,3328
61
- regina/sageRegina/testsuite/repr.out,sha256=nRMutB4_ibNcLnXHS1GQ1MeObbvFxD7C58aq-FxSYRk,27581
55
+ regina/sageRegina/testsuite/repr.out.v2,sha256=pBitEGc_0cdeYDKmHf64edWre4q5FiWwS1JC3AW81w4,28055
56
+ regina/sageRegina/testsuite/iterators.test,sha256=GqNsFwFzp3TucjGOQo5XQTQvy0XgOqgvxPBc6BTUtZs,3616
57
+ regina/sageRegina/testsuite/repr.out,sha256=pBitEGc_0cdeYDKmHf64edWre4q5FiWwS1JC3AW81w4,28055
62
58
  regina/sageRegina/testsuite/perm.test,sha256=rx4GNxhgryP9Ja21v8C2B5-mg13B7pT05uzi_1zB8qM,2555
63
59
  regina/sageRegina/testsuite/sets.test,sha256=NEJCteDcmFo3aHZExFWzuSkApumGS8AHLPHxtP7okvw,1631
64
60
  regina/sageRegina/testsuite/sets.out,sha256=VeoMRh_uNr7cxr_9z6GwIK-lXzAwhoed0HpvUnPagmA,309
65
- regina/sageRegina/testsuite/docstrings.out,sha256=ofmRAqTvF0C2tHFWpww4s25deRIJfw4vDZmwq4ZThxY,31327
61
+ regina/sageRegina/testsuite/docstrings.out,sha256=ZeMExvhAzDWs3fm_w5dgGRZdpAxHj3sNbazg9mqZwdg,30905
66
62
  regina/sageRegina/testsuite/integer.out,sha256=v5wIIGEC4U53kNdiOvXKO2w5wUZhpKmKRa8C24wZuns,1340
67
63
  regina/sageRegina/testsuite/listview.test,sha256=pVRLgaM0gC5jFPV7HTAMv3RhgU0XMj1HWmUJb8R9DI4,5702
68
64
  regina/sageRegina/testsuite/tightencode.out,sha256=O10EVi6zixywmx3ZllsNVuQdoiyi4ohXKB1mLzGRDW4,205
69
65
  regina/sageRegina/testsuite/standardtri.test,sha256=wmj4Lyawnt5kXSTrVLsUTigVGfse5jXnMfbor3Vq_Q8,18800
70
66
  regina/sageRegina/testsuite/docstrings.test,sha256=uyhE1AzhkekReAhHoyWiDcu4IoncHS7Z9aR3OIxfPaA,1981
71
67
  regina/sageRegina/testsuite/sort.test,sha256=JIy1Uw4eEju2gxGYlaloqxc7wVFHLLqwbB8uKo40Zps,1818
68
+ regina/sageRegina/testsuite/testcallback.in,sha256=mg26nZmZseb_F0kkGdly_EiARPxsJJQt_GDhchDBIAY,4977
72
69
  regina/sageRegina/testsuite/i18n-utf8.rga,sha256=G1xhNiTXRD_URSCx4eavfxa-44UQhGB2M8v1qJXh4V8,185
73
70
  regina/sageRegina/testsuite/facenumbering.test,sha256=q5r7Ali7r9ImPY70dILeHPIv4Y3Qzuoi0KeMC_ZUKI4,2311
74
71
  regina/sageRegina/testsuite/swapping.test,sha256=PRNLfMEEQA2jrMMMCUx7elF4nswl_pCdiEtvxugmal8,3367
75
72
  regina/sageRegina/testsuite/lookup.test,sha256=nRnjnOqbZgWaqKFpV2ueD9NTWTcyFg7L9zmrA7XylRY,1687
76
- regina/sageRegina/testsuite/testall.in,sha256=xrGshkabvGwmjJT-sdhHTa6bYzsQIlltOswoUDUYJ-U,5729
73
+ regina/sageRegina/testsuite/testall.in,sha256=4SVwhBD04y__JPVNeMKJT_BZaV8OGZMqVa3J20zwcCQ,6150
77
74
  regina/sageRegina/testsuite/exception.test,sha256=0_g8ysagyK1HUvlg8cOrvyleqneOW1rAlRiScbFAfWk,2936
78
75
  regina/sageRegina/testsuite/embeddings.out,sha256=lYbXx7oKQwzJb_tKnCuQZVeUtqs7AFO3pVRHj3srJ_s,849
79
76
  regina/sageRegina/testsuite/index.out,sha256=eWVGEOjN3tWlU4nv8kL--AXN6l14bq5BTMLsE7MsbR0,69
@@ -88,7 +85,7 @@ regina/sageRegina/testsuite/O2_1.tri,sha256=DIcVg1feAL8NfnvfFsiY-q9erTNlDBAc-Z0H
88
85
  regina/sageRegina/testsuite/enumerate.out,sha256=wcTUbAtRhw9-g1HWmpZ5Y9-uru6v9plh4B1z447rlic,1736
89
86
  regina/sageRegina/testsuite/orb.out,sha256=cFIkH1aGOgV3AMixEJRoB7eueP5DO1oUWF1JmgLdIlU,16190
90
87
  regina/sageRegina/testsuite/index.test,sha256=2kUzGpgO71PP7uPiJzqNa84s8oklt3zwygjNdtrn5RA,1595
91
- regina/sageRegina/testsuite/repr.test,sha256=9_mSx4pLqw1TMAg8lBQVwnHtJjZNt3wMmqA2xcj-iGs,14472
88
+ regina/sageRegina/testsuite/repr.test,sha256=H9gqWRp-idAzZEb6QyaHaFxZOrJAoHWvclWvkHumf_g,14488
92
89
  regina/sageRegina/testsuite/utf8.out,sha256=z4c3WXpKz9cH58mJ9Tl37KBB0N9_L54h40mu-CLgNTs,651
93
90
  regina/sageRegina/testsuite/pdf.out,sha256=TWc050D-WfNo2WZ0bMRqoRK8483Sy5D7CTpMrioJ0iY,44
94
91
  regina/sageRegina/testsuite/plantri.out,sha256=zxbqdyQmS_eMPflNcoGLJMn034uWjxXIOV1iydEC1Ro,784
@@ -111,14 +108,16 @@ regina/sageRegina/testsuite/facenumbering.out,sha256=3VRwhXCBngTyZwOaZSYxVdZ6l-E
111
108
  regina/sageRegina/testsuite/O2_1.rga,sha256=1K21GL2OAOv_0ftpzbEQVWny3oFPq9ZkJpvCvN40ReA,421
112
109
  regina/sageRegina/testsuite/euler.test,sha256=ZSy01vYT8N-ZCnSnKfkxWaDhJZWzqHHXEZsSzEvxbAE,3216
113
110
  regina/sageRegina/testsuite/swapping.out,sha256=yK0ssIgERFFynecyqQAtFKkYtuQxU1-9pbxPuWxvLvY,376
111
+ regina/sageRegina/testsuite/testsub.in,sha256=YsZZWM84QYMfaGKRyipT1akDMSFBBa93YLpQqt8I-oA,4918
114
112
  regina/sageRegina/testsuite/treetraversal.test,sha256=J-9AU2yHFQJoT4nIa7vcthjEr7uKmdCfqvnnxwCGJ2o,5253
115
113
  regina/sageRegina/testsuite/embeddings.test,sha256=HvyrIXdodw0922sf1DxBrMyTc7snLSlL1FP5DTiSxr0,2637
116
114
  regina/sageRegina/testsuite/refs.out,sha256=a5V3sv1KvCRzMU4CYSSGCZ1l80xzfLY_oQQ8Qdpuhcc,545
117
115
  regina/sageRegina/testsuite/treedecomp.test,sha256=_B3koAVriiPaPeXQXI7gZ1JyE_wXZAWDr-tDrOTYx2Q,2239
118
116
  regina/sageRegina/testsuite/cube.orb,sha256=w4LRR27Dm6z2RlfyM4ZqBL_Q18UgDiNmPi8rj5RAfrk,5095
117
+ regina/sageRegina/testsuite/docstrings.out.v2,sha256=LLhPV_IgVnaUIMeOwN0jbggIuNsaBIb3r-sbOESjgB8,30661
119
118
  regina/sageRegina/testsuite/faces.test,sha256=AOe0mjGXiK_WmPzz0BV_bQbyA5rj9sFXX0EXk0JLKIM,2755
120
119
  regina/sageRegina/testsuite/listview.out,sha256=LXvsc_k2AtCazv3W_8bOIQ9TC6rR3EzLn2ALL5yBAl8,11875
121
- regina/sageRegina/testsuite/docstrings.filter,sha256=uHk-pSm9ZoT1yI_x-OCzVK7Fh-u1XPOc_L43jBZBriw,647
120
+ regina/sageRegina/testsuite/docstrings.filter,sha256=NfkpfNMG-4gJ0WJeHYABEgMfBd9k3wA4IZrtBL4CwyM,1010
122
121
  regina/sageRegina/testsuite/surfaces.test,sha256=t8QP-gA2oaAuEgQ1HjLSzWyC4IXPO79uJK6fy9Tl_Zc,4430
123
122
  regina/sageRegina/testsuite/README.txt,sha256=InDWLaQTw1a3e0YimFbqUbCVWPquIb4g4zRMDHbkagA,981
124
123
  regina/sageRegina/testsuite/file3.rga,sha256=oFEO0czljy0Zp5cLmIBvd1hAlgOCMbJ_uDLQyVBJ5gA,5483
@@ -140,6 +139,7 @@ regina/sageRegina/testsuite/orb.test,sha256=JE1Jwb2PGhK6KICEjECY-JpU5sYSvR0rFkfd
140
139
  regina/sageRegina/testsuite/presentations.test,sha256=5QkayVkH2fq3Shsx_PL7_RCanNeg6B49X-fbMUNs_ec,2179
141
140
  regina/sageRegina/testsuite/operators.out,sha256=SUBT7r2nytItddtyGiZ39yvDGM_WuOlULrF-tL_Q6Xo,3465
142
141
  regina/sageRegina/testsuite/angles.test,sha256=6xiPg1HYYvaLJzCt7vF9bbTf9fOO75sf_v-0hjI1g3U,2572
142
+ regina/sageRegina/testsuite/basic_sub.out,sha256=fPWxvRrGKfFdhEHvTt8_kFWaLdAH4fZu9id1z-2c8Js,174
143
143
  regina/sageRegina/testsuite/standardtri.out,sha256=LTujvG5jE-N1_TlK93jriSJvA1JycN0-m0YGwbjbFug,346263
144
144
  regina/sageRegina/testsuite/operators.test,sha256=wa4xMU7dAQKcKfDUMPTWpm2kOSTUWvGJahhXAdLljyk,1855
145
145
  regina/sageRegina/testsuite/constructors.out,sha256=ocVdRJWeVrhYUTEnSYmRHKw1jl-UKyv8xKiBnWdz1Pg,240
@@ -151,9 +151,14 @@ regina/sageRegina/testsuite/refs.test,sha256=0k-9nQacajvaHZAAAVP8Xh-_a8mJDL2u91y
151
151
  regina/sageRegina/testsuite/i18n.out,sha256=nMo0PcjuONIo_48oEmPJXb-teuXgU_FInxHIEqpKGog,48
152
152
  regina/sageRegina/testsuite/i18n.test,sha256=dpiUxPRgbFjZ8v_dJrhGHcreUcYx5HCzqk3jYJejQZk,3578
153
153
  regina/sageRegina/testsuite/generic.out,sha256=3JhmChIo__1pypViNCK4tEyOetZ_Zv5GG4ASyY2AG58,4900
154
+ regina/sageRegina/testsuite/basic_callback.out,sha256=Hh7tXQY7PAx_9ifTH3ffjk4q3jOSkYrQca6Cy0iM_lY,7767
154
155
  regina/sageRegina/testsuite/alltypes.out,sha256=KnhZmYkAoZzT8cG7UlgLbGRdqMxTMEG7Oh5ud3kBGys,32441
155
156
  regina/sageRegina/testsuite/treetraversal.out,sha256=bLWW07g3WtNiinYj6g4a-d9vg5LrjDTTSDu8QKRenjI,1756
156
157
  regina/sageRegina/testsuite/memory3.test,sha256=BtKJ4mCqojPb1OGogFP-3lwhNl50PXnLBKyPoKGeyVA,5691
157
158
  regina/sageRegina/testsuite/file.test,sha256=v8y924oZG6w9ZSD6pSi9ham0u7TBVqEv0Motok02QaU,2404
158
159
  regina/.dylibs/libgmpxx.4.dylib,sha256=qwwBLfQVFQVv6LK5XvgVHrpf6CtXnJaWjnT-Zm_6y40,88528
159
160
  regina/.dylibs/libgmp.10.dylib,sha256=6lgujEc1Cz4CoQyNJRwrhAl3UsD5dbFHOlBAqwVZeW4,786016
161
+ regina-7.3.1.1.dist-info/RECORD,,
162
+ regina-7.3.1.1.dist-info/WHEEL,sha256=V1loQ6TpxABu1APUg0MoTRBOzSKT5xVc3skizX-ovCU,136
163
+ regina-7.3.1.1.dist-info/top_level.txt,sha256=SE8n0D2oQ01rniclTvoQoxiquFfUcnjGpHZrJKji6z8,69
164
+ regina-7.3.1.1.dist-info/METADATA,sha256=KNBpM4VJRKxaZLix_P3T7dn3eN400-JxHJiM2HdIwio,3888
@@ -1,5 +1,6 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp312-cp312-macosx_11_0_arm64
5
+ Generator: delocate 0.13.0
5
6