Skip to content

BF: boost min cython to 0.23 #14831

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/install_travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ if [ "$BUILD_TEST" ]; then

# build testing
pip uninstall --yes cython
pip install cython==0.19.1
pip install cython==0.23
( python setup.py build_ext --inplace && python setup.py develop ) || true

else
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements-2.7.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
python-dateutil=2.4.1
pytz=2013b
numpy
cython=0.19.1
cython=0.23
2 changes: 1 addition & 1 deletion ci/requirements-2.7_COMPAT.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy=1.7.1
cython=0.19.1
cython=0.23
dateutil=1.5
pytz=2013b
2 changes: 1 addition & 1 deletion ci/requirements-2.7_LOCALE.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
python-dateutil
pytz=2013b
numpy=1.7.1
cython=0.19.1
cython=0.23
2 changes: 1 addition & 1 deletion doc/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ Optional Dependencies
~~~~~~~~~~~~~~~~~~~~~

* `Cython <http://www.cython.org>`__: Only necessary to build development
version. Version 0.19.1 or higher.
version. Version 0.23 or higher.
* `SciPy <http://www.scipy.org>`__: miscellaneous statistical functions
* `xarray <http://xarray.pydata.org>`__: pandas like handling for > 2 dims, needed for converting Panels to xarray objects. Version 0.7.0 or higher is recommended.
* `PyTables <http://www.pytables.org>`__: necessary for HDF5-based storage. Version 3.0.0 or higher required, Version 3.2.1 or higher highly recommended.
Expand Down
Empty file modified doc/source/whatsnew/v0.16.1.txt
100755 → 100644
Empty file.
Empty file modified doc/source/whatsnew/v0.17.1.txt
100755 → 100644
Empty file.
3 changes: 2 additions & 1 deletion doc/source/whatsnew/v0.20.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,5 @@ Performance Improvements
Bug Fixes
~~~~~~~~~

- Bug in ``astype()`` where ``inf`` values were incorrectly converted to integers. Now raises error now with ``astype()`` for Series and DataFrames (:issue:`14265`)
- Bug in ``astype()`` where ``inf`` values were incorrectly converted to integers. Now raises error now with ``astype()`` for Series and DataFrames (:issue:`14265`)
- Require at least 0.23 version of cython to avoid problems with character encodings (:issue:`14699`)
Empty file modified doc/sphinxext/numpydoc/LICENSE.txt
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def is_platform_mac():
import versioneer
cmdclass = versioneer.get_cmdclass()

min_cython_ver = '0.19.1'
min_cython_ver = '0.23'
try:
import Cython
ver = Cython.__version__
Expand Down