Skip to content

Commit f57dc45

Browse files
remove debug statements
1 parent 23cd874 commit f57dc45

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
strategy:
6868
fail-fast: false
6969
matrix:
70-
os: ["ubuntu-24.04-arm"] #["ubuntu-24.04", "ubuntu-24.04-arm", "windows-2022" , "macos-13", "macos-14"]
70+
os: ["ubuntu-24.04", "ubuntu-24.04-arm", "windows-2022" , "macos-13", "macos-14"]
7171

7272
runs-on: ${{ matrix.os }}
7373

tunits/core/cython/frac.pyx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ cpdef frac float_to_twelths_frac(a) except *:
8686
cdef double d = float(a)
8787
cdef long long x = <long long>c_floor(12*d + 0.5)
8888
if c_fabs(12*d - x) > 1e-5:
89-
print('spit', d, x, 12*d - x, a, '%.20f'%d, '%.20f'%a, '%.20f'%(12*d))
9089
raise ValueError("Not a twelfth.")
9190

9291
return frac_least_terms(x, 12)

0 commit comments

Comments
 (0)