Skip to content

Commit

Permalink
BLD: numexpr 2.2.2 fixes incompatiblity in PyTables 2.4 (GH4908)
Browse files Browse the repository at this point in the history
DOC: removes incompat warning
  • Loading branch information
jreback committed Sep 27, 2013
1 parent 0fbd347 commit 8e5a94f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 14 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,6 @@ pip install pandas
- [numexpr](http://code.google.com/p/numexpr/)
- Needed to accelerate some expression evaluation operations
- Required by PyTables
- numexpr version <= 2.1 is recommended as the current version (2.2.1) has a backward
incompatible change with PyTables < 3.0
- [bottleneck](http://berkeleyanalytics.com/bottleneck)
- Needed to accelerate certain numerical operations

Expand Down
5 changes: 0 additions & 5 deletions doc/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,6 @@ Recommended Dependencies
* `numexpr <http://code.google.com/p/numexpr/>`__: for accelerating certain numerical operations.
``numexpr`` uses multiple cores as well as smart chunking and caching to achieve large speedups.

.. warning::

``numexpr <= 2.1`` is currently recommended as the current version (2.2.1) has a backward incompatible
change with ``PyTables < 3.0.0``

* `bottleneck <http://berkeleyanalytics.com/bottleneck>`__: for accelerating certain types of ``nan``
evaluations. ``bottleneck`` uses specialized cython routines to achieve large speedups.

Expand Down
5 changes: 0 additions & 5 deletions doc/source/io.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1732,11 +1732,6 @@ for some advanced strategies
backwards compatible) with all ``PyTables`` >= 2.3. For ``python >= 3.2``,
``pandas >= 0.12.0`` is required for compatibility.

.. warning::

``numexpr <= 2.1`` is currently recommended as the current version (2.2.1) has a backward incompatible
change with ``PyTables < 3.0.0``

.. ipython:: python
:suppress:
:okexcept:
Expand Down
5 changes: 3 additions & 2 deletions doc/source/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Improvements to existing features
- Both ExcelFile and read_excel to accept an xlrd.Book for the io
(formerly path_or_buf) argument; this requires engine to be set.
(:issue:`4961`).

API Changes
~~~~~~~~~~~

Expand Down Expand Up @@ -192,6 +192,7 @@ API Changes
- support ``timedelta64[ns]`` as a serialization type (:issue:`3577`)
- store `datetime.date` objects as ordinals rather then timetuples to avoid timezone issues (:issue:`2852`),
thanks @tavistmorph and @numpand
- ``numexpr`` 2.2.2 fixes incompatiblity in PyTables 2.4 (:issue:`4908`)
- ``JSON``

- added ``date_unit`` parameter to specify resolution of timestamps. Options
Expand Down Expand Up @@ -483,7 +484,7 @@ Bug Fixes
- Fixed wrong check for overlapping in ``DatetimeIndex.union`` (:issue:`4564`)
- Fixed conflict between thousands separator and date parser in csv_parser (:issue:`4678`)
- Fix appending when dtypes are not the same (error showing mixing float/np.datetime64) (:issue:`4993`)
- Fix repr for DateOffset. No longer show duplicate entries in kwds.
- Fix repr for DateOffset. No longer show duplicate entries in kwds.
Removed unused offset fields. (:issue:`4638`)

pandas 0.12.0
Expand Down

0 comments on commit 8e5a94f

Please sign in to comment.