numexpr
numexpr copied to clipboard
Fast numerical array expression evaluator for Python, NumPy, Pandas, PyTables and more
I saw that several bugs related to Python 3.13 have already been addressed, so I was wondering if numexpr already supports 3.13, and if so, if and when binary wheels...
There are a couple of issues in the way `numexpr.cpu.info` is used in `print_versions()`: 1) all the subclasses of `CPUInfoBase` have a class attribute `info`, whereas `CPUInfoBase` does not; this...
```python >>> ne.evaluate('a', local_dict={'a': 1}) array(1, dtype=int32) >>> ne.evaluate('a', global_dict={'a': 1}) KeyError: 'a' ``` The problem is a regression introduced in https://github.com/pydata/numexpr/commit/21ff376a0853aff6aea63343c6010d6434917319 because global_dict is not passed to re_evaluate (which...