reloadware/reloadium

Not support numba

papari1123 opened this issue · 1 comments

Describe the bug*

When I run Reloadium in debug mode with Numba's njit mode, an UnsupportedError occurs.
If I run Reloadium in either the running mode or normal debugging mode, no exceptions occur.

To Reproduce

first, install numba

pip install numba

copy code below, and just run reloadium in debug mode.

from numba import njit

@njit(cache=False)
def njit_test(tt):
    print(tt)

njit_test('hello')

Expected behavior

no exceptions occur even during reloadium debugging mode with njit.

Screenshots

image

Desktop or remote (please complete the following information):**

  • OS: Linux Ubuntu

  • OS version: 22.04.02 LTS

  • M1 chip: no

  • Reloadium package version: 1.2.1

  • PyCharm plugin version:
    image

  • IDE : PyCharm

  • Python Version: 3.9.0

  • Run mode: reloadium debug

Added in Reloadium 1.3.2 and PyCharm plugin 1.3.2