regina 7.3.0__cp311-cp311-macosx_11_0_arm64.whl → 7.3.1.1__cp311-cp311-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.0'
2
- release_date = 'March 20, 2022'
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.0
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,11 +40,10 @@ 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
- python3 -m pip install --user --pre --only-binary :all: -U regina
46
+ python3 -m pip install --user --upgrade "regina>=7.0"
38
47
  python3 -m regina.test
39
48
 
40
49
  On older versions of Linux, e.g. Ubuntu 18.04, you may need to update
@@ -51,13 +60,13 @@ itself. This project evolved out of Goerner's `sageRegina`_
51
60
  but works both with and without `SageMath`_. To install and test in
52
61
  SageMath do the following in a terminal window::
53
62
 
54
- sage -pip install --user --pre --only-binary :all: -U regina
63
+ sage -pip install --user --upgrade "regina>=7.0"
55
64
  sage -python -m regina.test
56
65
 
57
66
  One can also do this from **inside** SageMath (including from a
58
67
  notebook) by::
59
68
 
60
- sage: %pip install --user --pre --only-binary :all: -U regina
69
+ sage: %pip install --user "regina>=7.0"
61
70
  sage: import regina.test; regina.test.runTests()
62
71
 
63
72
  Please report any technical problems via the `issue tracker`_ on the
@@ -69,10 +78,13 @@ Building from source
69
78
 
70
79
  If the available binaries do not work for you, you can try building
71
80
  from source. You will need have the development versions of the
72
- libraries gmp, zlib, and bzip2 installed (which should be the case if
73
- using Sage)::
81
+ libraries gmp, zlib, and bzip2 installed::
74
82
 
75
- python3 -m pip install --user --pre --no-binary :all: -U -v regina
83
+ git clone https://github.com/3-manifolds/regina_wheel
84
+ cd regina_wheel
85
+ python3 setup.py package_assemble
86
+ python3 setup.py bdist_wheel
87
+ python3 -m pip install dist/regina*.whl
76
88
 
77
89
  This can easily take an hour or more.
78
90
 
@@ -1,11 +1,9 @@
1
- regina-7.3.0.dist-info/RECORD,,
2
- regina-7.3.0.dist-info/WHEEL,sha256=V4MgOdL8hB0MONNzyEXkjqg6fCQ0i-MT-UIIis4fuKU,110
3
- regina-7.3.0.dist-info/top_level.txt,sha256=SE8n0D2oQ01rniclTvoQoxiquFfUcnjGpHZrJKji6z8,69
4
- regina-7.3.0.dist-info/METADATA,sha256=OD_KqWBnWsbVP1dudT7XvLU5WhVT0eQ43AW-wmjM0Rk,3744
1
+ regina/libgmpxx.4.dylib,sha256=ywqDJInMypiSYNwLUNC7lVmaJoofmdQ3hhGyP2owgj8,88528
5
2
  regina/__init__.py,sha256=pdHUei4znR6VnEC3y5_1vkcbgkyNMQaqfVqZ0gD_y6M,8223
6
3
  regina/test.py,sha256=iXHrTumyBxNZhu10J29EtoNKwTOAzgiXzgHGGNq_Jvc,128
7
4
  regina/sageSetup.py,sha256=S9tEKQd4ICYp1hQvAW_Oug390mO9QrkL7j1K-urqTbk,1341
8
- regina/engine.cpython-311-darwin.so,sha256=wNpFNMfm0UdbaqK3HFNJ4HLw_PMNRmEzxbRapMR2B3I,74382425
5
+ regina/engine.cpython-311-darwin.so,sha256=gCx8FWRaLqSYN97FJXgRDoF0J76HvAMl6tG9tV0buVw,62163568
6
+ regina/libgmp.10.dylib,sha256=MX16SszQVdjeAVQQZWp9JB6NjpItePZHTUKm4fq8aHs,767920
9
7
  regina/plainCompleter.py,sha256=ILwPjEqALu_uB8QuNjP26YHJ6LvXCZjSZS24YUsKAyQ,7982
10
8
  regina/pyCensus/closed-hyp-census-full.tdb,sha256=b_-UTtQYTycZIQwH6m_mR19JA9sxgwQNAGGNqavx37s,417792
11
9
  regina/pyCensus/cusped-hyp-nor-census-9.tdb,sha256=qVB9DgaoWRvwd7xiegYKrl0Vy8L7vFXCCJFz3t6Zo2I,945152
@@ -14,10 +12,10 @@ regina/pyCensus/__init__.py,sha256=zHZIE8ILWhTuV8oFJ_tnyXaHM9Hf6pXCz5EkalWL_rs,5
14
12
  regina/pyCensus/christy-knots-links.tdb,sha256=0pGzIiN_kK6AzPT1ahfsroM542xEziKSZo6NynxHsTc,34560
15
13
  regina/pyCensus/cusped-hyp-or-census-9.tdb,sha256=wmta_gF99q3p33mtp8CIgzYK_R--LuKWRpAjLwef52c,1818112
16
14
  regina/pyCensus/closed-or-census-11.tdb,sha256=3Vff-ed8mecvatlbupXIje-FXzzI8iCkv3yhMTzBeSo,714752
17
- regina/sageRegina/config.py,sha256=oSC-jMlGSXQcyj1--pPKa1kYl9eSaDvls8aYvttahyM,430
18
- regina/sageRegina/version.py,sha256=WskqRGaXA9LToKUerF26Zr2lBDwYcXAK6cq8IxS7CdE,53
15
+ regina/sageRegina/config.py,sha256=Ii99LHNRWEBlHxRGKOi2Pan5X3afDOho7RWMX036AUg,380
16
+ regina/sageRegina/version.py,sha256=EfSluimGCqnW0ggAgEBdihKsz9v4xJe3imNcT93h89A,54
19
17
  regina/sageRegina/__init__.py,sha256=JTMX3XXpJqjr4n9VOX6bARB0uUEv7knrdSxlGRl95wQ,43
20
- regina/sageRegina/test.py,sha256=6tlBFXdvQwXIExoCh8flE_-QuFef8n2cmzVOZtBiVZU,3571
18
+ regina/sageRegina/test.py,sha256=Dr4EPds4-JGN9hmeEg7suMfORuZ5BLYZmw7b4inBESc,3962
21
19
  regina/sageRegina/testsuite/plantri.test,sha256=uJkpxEbR32ef-sNC8rEZgyFslYFtVpxgX3comN1xDB8,2161
22
20
  regina/sageRegina/testsuite/discs.out,sha256=K_QTgwQsUhvKAr0RVzYe04bhIgij-WD9CkF4WBZJqAo,21
23
21
  regina/sageRegina/testsuite/memory2.out,sha256=G5940LJT2CK8qnIRCbySt75ZRX7y8Iw_iNiJDbsCxBA,731
@@ -31,18 +29,17 @@ regina/sageRegina/testsuite/groups.test,sha256=PRB5LLJAJj1v_qDKbGhLkeyf_xBt45Cf_
31
29
  regina/sageRegina/testsuite/memory1.out,sha256=c5jOJJfbbckVDtDl4m5DpCb3ZZEd-FD5hjMqLlfFMaQ,608
32
30
  regina/sageRegina/testsuite/skeleton.test,sha256=2IYHUsVjXHhgMiqte2TqqrLLpqnQzbUYcADDv8Kan8Y,1758
33
31
  regina/sageRegina/testsuite/bytes.test,sha256=-CUxaXPsvKfOlieR7JUNOyJPZ9Gr-PsDRU8-naxJhv8,2210
34
- regina/sageRegina/testsuite/testbasic.in,sha256=eijsAWkPrb22DowbNtnE5u2-RyYhO_ONlKVFnIUu3Z4,9304
32
+ regina/sageRegina/testsuite/testbasic.in,sha256=gjZFCkwrKgKBXtnbnIWjZvdbgcVmfG7DAtIEESEuG3k,9756
35
33
  regina/sageRegina/testsuite/flype.out,sha256=_Kncz9zvDe9EJWYVXoP7lKUzfm5_U-cRVc0Be8qb5pY,4401
36
34
  regina/sageRegina/testsuite/safeheldtype_basic.out,sha256=KCcn26jBlU_v56eUsM_B_OEEG3SaMImX_THl5zsjR6s,365
37
35
  regina/sageRegina/testsuite/equality.test,sha256=5mgWIBUAYQUfXiuK2uL1-b3Daki25PUlTTH7AyF2QOo,11157
38
36
  regina/sageRegina/testsuite/pdf.test,sha256=XtaNAOxM2f6QZgzy3uF-ZX4qGJ_lreEuRuQQHVFm0oo,1737
39
- regina/sageRegina/testsuite/CMakeLists.txt,sha256=dgh6XnZq5QQHR4uZORMjxKuNdFNFedGmqqkY1wmUr80,921
37
+ regina/sageRegina/testsuite/CMakeLists.txt,sha256=LJYuHuq1M672_5t9SQrr5dNeVb5jDfmg75MP_yuM--w,1846
40
38
  regina/sageRegina/testsuite/safeheldtype_packet.out,sha256=8jXJSrlPleFhxKqoG4A4PrSrN3g9eG1zhvn0WGwDXVU,1319
41
39
  regina/sageRegina/testsuite/utf8.test,sha256=PSYDInfbkPHkD_-HBnckLI-ZHFYw8dyNkORaESZlayk,2344
42
40
  regina/sageRegina/testsuite/census.test,sha256=wP4BzfslB6PMd0-IGi06CmjuNmS-ucE87z3kQQJp1xA,4420
43
41
  regina/sageRegina/testsuite/trigeneral.out,sha256=nedXUjVQ-nCFY7nqimKeftB20HtUR97zJ-d-1oh3DNQ,30439
44
42
  regina/sageRegina/testsuite/listener.out,sha256=Y8yknKa5TDRgB-_4ZEY3SLyil4K35zeA8aClAch7fGo,816
45
- regina/sageRegina/testsuite/basic.cpp,sha256=9VWsHCT0ZWiVlRqgCAaUspIXpCt1pPngz0T9HshiyfU,8826
46
43
  regina/sageRegina/testsuite/memory1.test,sha256=HjOMgQzQH4bZU0ufDdYAuiNWSjNzc_OzIAugJIs5SIs,4622
47
44
  regina/sageRegina/testsuite/alltypes.test,sha256=Xbd4s2mlJ5bG6kINY_nuXlW2QT5PrJNvS3GqpdXNDbU,3069
48
45
  regina/sageRegina/testsuite/euler.out,sha256=6xQEdq-e6qbero29FEyGNPMsW2vWGBF103_z1opJnmY,436
@@ -50,28 +47,30 @@ regina/sageRegina/testsuite/census.out,sha256=uOLClZfFvvuMtCblBvIKI_3a7AW5KNCqdb
50
47
  regina/sageRegina/testsuite/dodec.orb,sha256=khKqZ0WBiQLB-NOUbiiP4F-KG8NTRsxrTuRZGwacDds,27275
51
48
  regina/sageRegina/testsuite/clone.out,sha256=EygmN5zCSUQZ3lLtCH1WRsbTClRDEKJByM756N77mbM,90
52
49
  regina/sageRegina/testsuite/callbacks.out,sha256=netSxC6ckx1rHQtkRyJ-IvUe9HRi88-dREfHrOd6e1U,13766
53
- regina/sageRegina/testsuite/iterators.out,sha256=19Qu8ZxD7txLEmEfH4bihK7vF1hyA5X5FmmEBgSZbJ0,2696
50
+ regina/sageRegina/testsuite/iterators.out,sha256=k69iyThUj6WEM7gGx8-3j_cpHIBVf2NyjazgKTBtHTI,4620
54
51
  regina/sageRegina/testsuite/enumerate.test,sha256=q--sGW3RtoypprI6_A7wHb3C4QJLLWYFClGw9ah6OUM,2262
55
52
  regina/sageRegina/testsuite/callbacks.test,sha256=6I0HCLk-wnQ95p-YbqQ8nCNurOP6-Gjd6lfIiMgWlFA,10056
56
53
  regina/sageRegina/testsuite/integer.test,sha256=IQ0NJp8mILO8yzAZApEblJuroZ5w6QRZLnxRMuMwaFE,2046
57
54
  regina/sageRegina/testsuite/flype.test,sha256=IwVw4THgg9vh8cMC9-eF5noEMFJNZLIxLtyBddC-eL8,1826
58
- regina/sageRegina/testsuite/iterators.test,sha256=ZDCIo31aoO0xVW4e2tGU-6HrV3usATYWgS8JoihKi-o,3328
59
- regina/sageRegina/testsuite/repr.out,sha256=nRMutB4_ibNcLnXHS1GQ1MeObbvFxD7C58aq-FxSYRk,27581
55
+ regina/sageRegina/testsuite/iterators.test,sha256=GqNsFwFzp3TucjGOQo5XQTQvy0XgOqgvxPBc6BTUtZs,3616
56
+ regina/sageRegina/testsuite/repr.out,sha256=pBitEGc_0cdeYDKmHf64edWre4q5FiWwS1JC3AW81w4,28055
60
57
  regina/sageRegina/testsuite/perm.test,sha256=rx4GNxhgryP9Ja21v8C2B5-mg13B7pT05uzi_1zB8qM,2555
61
58
  regina/sageRegina/testsuite/sets.test,sha256=NEJCteDcmFo3aHZExFWzuSkApumGS8AHLPHxtP7okvw,1631
62
59
  regina/sageRegina/testsuite/sets.out,sha256=VeoMRh_uNr7cxr_9z6GwIK-lXzAwhoed0HpvUnPagmA,309
63
- regina/sageRegina/testsuite/docstrings.out,sha256=ofmRAqTvF0C2tHFWpww4s25deRIJfw4vDZmwq4ZThxY,31327
60
+ regina/sageRegina/testsuite/docstrings.out,sha256=LLhPV_IgVnaUIMeOwN0jbggIuNsaBIb3r-sbOESjgB8,30661
61
+ regina/sageRegina/testsuite/repr.out.v3,sha256=pBitEGc_0cdeYDKmHf64edWre4q5FiWwS1JC3AW81w4,28055
64
62
  regina/sageRegina/testsuite/integer.out,sha256=v5wIIGEC4U53kNdiOvXKO2w5wUZhpKmKRa8C24wZuns,1340
65
63
  regina/sageRegina/testsuite/listview.test,sha256=pVRLgaM0gC5jFPV7HTAMv3RhgU0XMj1HWmUJb8R9DI4,5702
66
64
  regina/sageRegina/testsuite/tightencode.out,sha256=O10EVi6zixywmx3ZllsNVuQdoiyi4ohXKB1mLzGRDW4,205
67
65
  regina/sageRegina/testsuite/standardtri.test,sha256=wmj4Lyawnt5kXSTrVLsUTigVGfse5jXnMfbor3Vq_Q8,18800
68
66
  regina/sageRegina/testsuite/docstrings.test,sha256=uyhE1AzhkekReAhHoyWiDcu4IoncHS7Z9aR3OIxfPaA,1981
69
67
  regina/sageRegina/testsuite/sort.test,sha256=JIy1Uw4eEju2gxGYlaloqxc7wVFHLLqwbB8uKo40Zps,1818
68
+ regina/sageRegina/testsuite/testcallback.in,sha256=mg26nZmZseb_F0kkGdly_EiARPxsJJQt_GDhchDBIAY,4977
70
69
  regina/sageRegina/testsuite/i18n-utf8.rga,sha256=G1xhNiTXRD_URSCx4eavfxa-44UQhGB2M8v1qJXh4V8,185
71
70
  regina/sageRegina/testsuite/facenumbering.test,sha256=q5r7Ali7r9ImPY70dILeHPIv4Y3Qzuoi0KeMC_ZUKI4,2311
72
71
  regina/sageRegina/testsuite/swapping.test,sha256=PRNLfMEEQA2jrMMMCUx7elF4nswl_pCdiEtvxugmal8,3367
73
72
  regina/sageRegina/testsuite/lookup.test,sha256=nRnjnOqbZgWaqKFpV2ueD9NTWTcyFg7L9zmrA7XylRY,1687
74
- regina/sageRegina/testsuite/testall.in,sha256=xrGshkabvGwmjJT-sdhHTa6bYzsQIlltOswoUDUYJ-U,5729
73
+ regina/sageRegina/testsuite/testall.in,sha256=4SVwhBD04y__JPVNeMKJT_BZaV8OGZMqVa3J20zwcCQ,6150
75
74
  regina/sageRegina/testsuite/exception.test,sha256=0_g8ysagyK1HUvlg8cOrvyleqneOW1rAlRiScbFAfWk,2936
76
75
  regina/sageRegina/testsuite/embeddings.out,sha256=lYbXx7oKQwzJb_tKnCuQZVeUtqs7AFO3pVRHj3srJ_s,849
77
76
  regina/sageRegina/testsuite/index.out,sha256=eWVGEOjN3tWlU4nv8kL--AXN6l14bq5BTMLsE7MsbR0,69
@@ -86,7 +85,7 @@ regina/sageRegina/testsuite/O2_1.tri,sha256=DIcVg1feAL8NfnvfFsiY-q9erTNlDBAc-Z0H
86
85
  regina/sageRegina/testsuite/enumerate.out,sha256=wcTUbAtRhw9-g1HWmpZ5Y9-uru6v9plh4B1z447rlic,1736
87
86
  regina/sageRegina/testsuite/orb.out,sha256=cFIkH1aGOgV3AMixEJRoB7eueP5DO1oUWF1JmgLdIlU,16190
88
87
  regina/sageRegina/testsuite/index.test,sha256=2kUzGpgO71PP7uPiJzqNa84s8oklt3zwygjNdtrn5RA,1595
89
- regina/sageRegina/testsuite/repr.test,sha256=9_mSx4pLqw1TMAg8lBQVwnHtJjZNt3wMmqA2xcj-iGs,14472
88
+ regina/sageRegina/testsuite/repr.test,sha256=H9gqWRp-idAzZEb6QyaHaFxZOrJAoHWvclWvkHumf_g,14488
90
89
  regina/sageRegina/testsuite/utf8.out,sha256=z4c3WXpKz9cH58mJ9Tl37KBB0N9_L54h40mu-CLgNTs,651
91
90
  regina/sageRegina/testsuite/pdf.out,sha256=TWc050D-WfNo2WZ0bMRqoRK8483Sy5D7CTpMrioJ0iY,44
92
91
  regina/sageRegina/testsuite/plantri.out,sha256=zxbqdyQmS_eMPflNcoGLJMn034uWjxXIOV1iydEC1Ro,784
@@ -102,6 +101,7 @@ regina/sageRegina/testsuite/safeheldtype_basic.test,sha256=WQv3xTaV6bLUnmE68IjBe
102
101
  regina/sageRegina/testsuite/trigeneral.test,sha256=QdYIC_9B2O5WvdTVCn_0GjYy68rNFu5U9l81HJGhJ2c,5993
103
102
  regina/sageRegina/testsuite/skeleton.out,sha256=Rv2RoWffGLODuvg8MvrRQAQIjKJQUHJknKGhgGEcmAI,10338
104
103
  regina/sageRegina/testsuite/exception.out,sha256=DDDbI6lspOPNiumXII9coBSCpjcQykQoHcOcGcZp56w,86
104
+ regina/sageRegina/testsuite/docstrings.out.v3,sha256=ZeMExvhAzDWs3fm_w5dgGRZdpAxHj3sNbazg9mqZwdg,30905
105
105
  regina/sageRegina/testsuite/knotted-Y.orb,sha256=kuWxNJh9HNKNi0NR2OYEkxr9jL8fSGcMg6aJI-abVsA,1212
106
106
  regina/sageRegina/testsuite/misc.out,sha256=2n5DJtfzZExvK9AlKsfd_Synl9NDoV72seVl5qEqA_k,97
107
107
  regina/sageRegina/testsuite/sample.pdf,sha256=wZzexFBzwXlTBWOIR1BBZ-KbQvh0p-P7nvCYiLNczLw,101632
@@ -109,6 +109,7 @@ regina/sageRegina/testsuite/facenumbering.out,sha256=3VRwhXCBngTyZwOaZSYxVdZ6l-E
109
109
  regina/sageRegina/testsuite/O2_1.rga,sha256=1K21GL2OAOv_0ftpzbEQVWny3oFPq9ZkJpvCvN40ReA,421
110
110
  regina/sageRegina/testsuite/euler.test,sha256=ZSy01vYT8N-ZCnSnKfkxWaDhJZWzqHHXEZsSzEvxbAE,3216
111
111
  regina/sageRegina/testsuite/swapping.out,sha256=yK0ssIgERFFynecyqQAtFKkYtuQxU1-9pbxPuWxvLvY,376
112
+ regina/sageRegina/testsuite/testsub.in,sha256=YsZZWM84QYMfaGKRyipT1akDMSFBBa93YLpQqt8I-oA,4918
112
113
  regina/sageRegina/testsuite/treetraversal.test,sha256=J-9AU2yHFQJoT4nIa7vcthjEr7uKmdCfqvnnxwCGJ2o,5253
113
114
  regina/sageRegina/testsuite/embeddings.test,sha256=HvyrIXdodw0922sf1DxBrMyTc7snLSlL1FP5DTiSxr0,2637
114
115
  regina/sageRegina/testsuite/refs.out,sha256=a5V3sv1KvCRzMU4CYSSGCZ1l80xzfLY_oQQ8Qdpuhcc,545
@@ -116,7 +117,7 @@ regina/sageRegina/testsuite/treedecomp.test,sha256=_B3koAVriiPaPeXQXI7gZ1JyE_wXZ
116
117
  regina/sageRegina/testsuite/cube.orb,sha256=w4LRR27Dm6z2RlfyM4ZqBL_Q18UgDiNmPi8rj5RAfrk,5095
117
118
  regina/sageRegina/testsuite/faces.test,sha256=AOe0mjGXiK_WmPzz0BV_bQbyA5rj9sFXX0EXk0JLKIM,2755
118
119
  regina/sageRegina/testsuite/listview.out,sha256=LXvsc_k2AtCazv3W_8bOIQ9TC6rR3EzLn2ALL5yBAl8,11875
119
- regina/sageRegina/testsuite/docstrings.filter,sha256=uHk-pSm9ZoT1yI_x-OCzVK7Fh-u1XPOc_L43jBZBriw,647
120
+ regina/sageRegina/testsuite/docstrings.filter,sha256=NfkpfNMG-4gJ0WJeHYABEgMfBd9k3wA4IZrtBL4CwyM,1010
120
121
  regina/sageRegina/testsuite/surfaces.test,sha256=t8QP-gA2oaAuEgQ1HjLSzWyC4IXPO79uJK6fy9Tl_Zc,4430
121
122
  regina/sageRegina/testsuite/README.txt,sha256=InDWLaQTw1a3e0YimFbqUbCVWPquIb4g4zRMDHbkagA,981
122
123
  regina/sageRegina/testsuite/file3.rga,sha256=oFEO0czljy0Zp5cLmIBvd1hAlgOCMbJ_uDLQyVBJ5gA,5483
@@ -138,6 +139,7 @@ regina/sageRegina/testsuite/orb.test,sha256=JE1Jwb2PGhK6KICEjECY-JpU5sYSvR0rFkfd
138
139
  regina/sageRegina/testsuite/presentations.test,sha256=5QkayVkH2fq3Shsx_PL7_RCanNeg6B49X-fbMUNs_ec,2179
139
140
  regina/sageRegina/testsuite/operators.out,sha256=SUBT7r2nytItddtyGiZ39yvDGM_WuOlULrF-tL_Q6Xo,3465
140
141
  regina/sageRegina/testsuite/angles.test,sha256=6xiPg1HYYvaLJzCt7vF9bbTf9fOO75sf_v-0hjI1g3U,2572
142
+ regina/sageRegina/testsuite/basic_sub.out,sha256=fPWxvRrGKfFdhEHvTt8_kFWaLdAH4fZu9id1z-2c8Js,174
141
143
  regina/sageRegina/testsuite/standardtri.out,sha256=LTujvG5jE-N1_TlK93jriSJvA1JycN0-m0YGwbjbFug,346263
142
144
  regina/sageRegina/testsuite/operators.test,sha256=wa4xMU7dAQKcKfDUMPTWpm2kOSTUWvGJahhXAdLljyk,1855
143
145
  regina/sageRegina/testsuite/constructors.out,sha256=ocVdRJWeVrhYUTEnSYmRHKw1jl-UKyv8xKiBnWdz1Pg,240
@@ -149,7 +151,14 @@ regina/sageRegina/testsuite/refs.test,sha256=0k-9nQacajvaHZAAAVP8Xh-_a8mJDL2u91y
149
151
  regina/sageRegina/testsuite/i18n.out,sha256=nMo0PcjuONIo_48oEmPJXb-teuXgU_FInxHIEqpKGog,48
150
152
  regina/sageRegina/testsuite/i18n.test,sha256=dpiUxPRgbFjZ8v_dJrhGHcreUcYx5HCzqk3jYJejQZk,3578
151
153
  regina/sageRegina/testsuite/generic.out,sha256=3JhmChIo__1pypViNCK4tEyOetZ_Zv5GG4ASyY2AG58,4900
154
+ regina/sageRegina/testsuite/basic_callback.out,sha256=Hh7tXQY7PAx_9ifTH3ffjk4q3jOSkYrQca6Cy0iM_lY,7767
152
155
  regina/sageRegina/testsuite/alltypes.out,sha256=KnhZmYkAoZzT8cG7UlgLbGRdqMxTMEG7Oh5ud3kBGys,32441
153
156
  regina/sageRegina/testsuite/treetraversal.out,sha256=bLWW07g3WtNiinYj6g4a-d9vg5LrjDTTSDu8QKRenjI,1756
154
157
  regina/sageRegina/testsuite/memory3.test,sha256=BtKJ4mCqojPb1OGogFP-3lwhNl50PXnLBKyPoKGeyVA,5691
155
158
  regina/sageRegina/testsuite/file.test,sha256=v8y924oZG6w9ZSD6pSi9ham0u7TBVqEv0Motok02QaU,2404
159
+ regina/.dylibs/libgmpxx.4.dylib,sha256=qwwBLfQVFQVv6LK5XvgVHrpf6CtXnJaWjnT-Zm_6y40,88528
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=sunMa2yiYbrNLGeMVDqEA0ayyJbHlex7SCn1TZrEq60,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.38.4)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp311-cp311-macosx_11_0_arm64
5
+ Generator: delocate 0.13.0
5
6