Skip to content
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

DOC: Update with Python 3.4 build notes #1525

Merged
merged 2 commits into from Mar 27, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions INSTALL.txt
Expand Up @@ -22,13 +22,15 @@ patsy >= 0.1.0
patsy.readthedocs.org


cython >= 0.15.1
cython >= 0.20.1

http://cython.org/

Cython is required if you are building the source from github. However,
if you have are building from source distribution archive then the
generated C files are included and Cython is not necessary.
generated C files are included and Cython is not necessary. If you are
building for Python 3.4, then you must use Cython >= 0.20.1. Earlier
versions may be ok for Python < 3.4.

Optional Dependencies
---------------------
Expand Down
2 changes: 2 additions & 0 deletions build_bdists.bat
Expand Up @@ -4,4 +4,6 @@ call tools\build_win_bdist64-py27.bat
call tools\build_win_bdist32-py27.bat
call tools\build_win_bdist32-py32.bat
call tools\build_win_bdist64-py32.bat
call tools\build_win_bdist33-py34.bat
call tools\build_win_bdist64-py34.bat
call python setup.py sdist --formats=zip,gztar
2 changes: 1 addition & 1 deletion docs/source/install.rst
Expand Up @@ -112,7 +112,7 @@ Dependencies
* `SciPy <http://www.scipy.org/>`__ >= 0.7
* `Pandas <http://pandas.pydata.org/>`__ >= 0.7.1
* `Patsy <http://patsy.readthedocs.org>`__ >= 0.1.0
* `Cython <http://cython.org/>`__ >= 15.1, Needed if you want to build the code from github and not a source distribution.
* `Cython <http://cython.org/>`__ >= 20.1, Needed if you want to build the code from github and not a source distribution. You must use Cython >= 0.20.1 if you're on Python 3.4. Earlier versions may work for Python < 3.4.

Optional Dependencies
~~~~~~~~~~~~~~~~~~~~~
Expand Down
5 changes: 5 additions & 0 deletions tools/build_win_bdist32-py34.bat
@@ -0,0 +1,5 @@
setlocal EnableDelayedExpansion
CALL "C:\Program Files\Microsoft SDKs\Windows\v7.0\Bin\SetEnv.cmd" /x86 /release
set DISTUTILS_USE_SDK=1
rem C:\Python27_32bit\python.exe C:\Users\skipper\statsmodels\statsmodels\setup.py bdist_msi
C:\Python34_32bit\python.exe C:\Users\skipper\statsmodels\statsmodels\setup.py bdist_wininst
5 changes: 5 additions & 0 deletions tools/build_win_bdist64-py34.bat
@@ -0,0 +1,5 @@
setlocal EnableDelayedExpansion
CALL "C:\Program Files\Microsoft SDKs\Windows\v7.0\Bin\SetEnv.cmd" /x64 /release
set DISTUTILS_USE_SDK=1
rem C:\Python27\python.exe C:\Users\skipper\statsmodels\statsmodels\setup.py bdist_msi
C:\Python34_64bit\python.exe C:\Users\skipper\statsmodels\statsmodels\setup.py bdist_wininst