Skip to content

Commit 35e0dc8

Browse files
committed
remove circuitpython version notice, as the stable version now supports all we need
1 parent b4c0b54 commit 35e0dc8

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

jepler_udecimal/__init__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -160,11 +160,6 @@
160160

161161
if sys.implementation.name == "circuitpython":
162162

163-
if not hasattr(int, "bit_length"):
164-
raise ImportError(
165-
"jepler_udecimal requires int.bit_length. Use CircuitPython 6.0.0-rc.1 or newer."
166-
)
167-
168163
def _as_integer_ratio(f):
169164
m, e = _math.frexp(f)
170165
m = round(m * (1 << 53))

0 commit comments

Comments
 (0)