Skip to content

Releases: pydata/numexpr

v2.9.0

26 Jan 12:51

Choose a tag to compare

Tagging version 2.9.0

v2.8.8

11 Dec 13:07

Choose a tag to compare

Tagging version 2.8.8

v2.8.7

26 Sep 08:12
cb941c5

Choose a tag to compare

Tagging version 2.8.7

v2.8.6

12 Sep 14:49

Choose a tag to compare

Tagging version 2.8.6

v2.8.5

06 Aug 20:20

Choose a tag to compare

Tagging version 2.8.5

v2.8.4

26 Oct 02:47

Choose a tag to compare

Tagging version 2.8.4

v2.8.3

27 Jun 17:37

Choose a tag to compare

Tagging version 2.8.3

NumExpr 2.7.2

29 Dec 18:58

Choose a tag to compare

v2.7.2

Tagging version 2.7.2

NumExpr v2.6.9

21 Dec 18:39

Choose a tag to compare

Tagging version 2.6.9

Changes from 2.6.4 to 2.6.5

01 May 18:36

Choose a tag to compare

  • The maximum thread count can now be set at import-time by setting the
    environment variable 'NUMEXPR_MAX_THREADS'. The default number of
    max threads was lowered from 4096 (which was deemed excessive) to 64.
  • A number of imports were removed (pkg_resources) or made lazy (cpuinfo) in
    order to speed load-times for downstream packages (such as pandas, sympy,
    and tables). Import time has dropped from about 330 ms to 90 ms. Thanks to
    Jason Sachs for pointing out the source of the slow-down.
  • Thanks to Alvaro Lopez Ortega for updates to benchmarks to be compatible with
    Python 3.
  • Travis and AppVeyor now fail if the test module fails or errors.
  • Thanks to Mahdi Ben Jelloul for a patch that removed a bug where constants
    in where calls would raise a ValueError.
  • Fixed a bug whereby all-constant power operations would lead to infinite
    recursion.