Skip to content

Commit 8e5a94f

Browse files
committed
BLD: numexpr 2.2.2 fixes incompatiblity in PyTables 2.4 (GH4908)
DOC: removes incompat warning
1 parent 0fbd347 commit 8e5a94f

File tree

4 files changed

+3
-14
lines changed

4 files changed

+3
-14
lines changed

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@ pip install pandas
9696
- [numexpr](http://code.google.com/p/numexpr/)
9797
- Needed to accelerate some expression evaluation operations
9898
- Required by PyTables
99-
- numexpr version <= 2.1 is recommended as the current version (2.2.1) has a backward
100-
incompatible change with PyTables < 3.0
10199
- [bottleneck](http://berkeleyanalytics.com/bottleneck)
102100
- Needed to accelerate certain numerical operations
103101

doc/source/install.rst

-5
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,6 @@ Recommended Dependencies
7777
* `numexpr <http://code.google.com/p/numexpr/>`__: for accelerating certain numerical operations.
7878
``numexpr`` uses multiple cores as well as smart chunking and caching to achieve large speedups.
7979

80-
.. warning::
81-
82-
``numexpr <= 2.1`` is currently recommended as the current version (2.2.1) has a backward incompatible
83-
change with ``PyTables < 3.0.0``
84-
8580
* `bottleneck <http://berkeleyanalytics.com/bottleneck>`__: for accelerating certain types of ``nan``
8681
evaluations. ``bottleneck`` uses specialized cython routines to achieve large speedups.
8782

doc/source/io.rst

-5
Original file line numberDiff line numberDiff line change
@@ -1732,11 +1732,6 @@ for some advanced strategies
17321732
backwards compatible) with all ``PyTables`` >= 2.3. For ``python >= 3.2``,
17331733
``pandas >= 0.12.0`` is required for compatibility.
17341734

1735-
.. warning::
1736-
1737-
``numexpr <= 2.1`` is currently recommended as the current version (2.2.1) has a backward incompatible
1738-
change with ``PyTables < 3.0.0``
1739-
17401735
.. ipython:: python
17411736
:suppress:
17421737
:okexcept:

doc/source/release.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Improvements to existing features
136136
- Both ExcelFile and read_excel to accept an xlrd.Book for the io
137137
(formerly path_or_buf) argument; this requires engine to be set.
138138
(:issue:`4961`).
139-
139+
140140
API Changes
141141
~~~~~~~~~~~
142142

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

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

489490
pandas 0.12.0

0 commit comments

Comments
 (0)