Skip to content

Commit

Permalink
Getting ready for 3.0.1a5
Browse files Browse the repository at this point in the history
  • Loading branch information
robbmcleod committed Aug 18, 2020
1 parent 8c8f24b commit b387f87
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions RELEASE_NOTES.rst
Expand Up @@ -2,6 +2,11 @@
Release notes for NumExpr 3.0 series
=====================================

Changes from 3.0.1a4 to 3.0.1a5
-------------------------------
* Fixed an error when `local_dict` was passed as an input argument to a
`NumExpr` initialization.

Changes from 3.0.1 to 3.0.1a4
---------------------------
* Added integer mod/remainder and integer floor division.
Expand Down
4 changes: 2 additions & 2 deletions numexpr3/ne3compiler.py
Expand Up @@ -356,7 +356,7 @@ def __init__(self, expr, lib=LIB_STD, casting=CAST_SAFE, local_dict=None,
big = NumExpr('')
TODO: example with
TODO: example
Arguments
^^^^^^^^^
Expand All @@ -365,7 +365,7 @@ def __init__(self, expr, lib=LIB_STD, casting=CAST_SAFE, local_dict=None,
The values for :code:`a` and :code:`b` will by default be taken from the calling
function's frame (through use of :code:`sys._getframe()`). Alternatively, they
can be specifed using the :code:`local_dict` argument.
can be specified using the :code:`local_dict` argument.
Multi-line statements, or semi-colon seperated statements, are supported.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -23,7 +23,7 @@
major_ver = 3
minor_ver = 0
nano_ver = 1
branch = 'a4'
branch = 'a5'
version = '%d.%d.%d%s' % (major_ver, minor_ver, nano_ver, branch)

# Write __version__.py
Expand Down

0 comments on commit b387f87

Please sign in to comment.