update version to be consistent with python

This commit is contained in:
tqchen 2015-05-06 16:45:05 -07:00
parent 594bed34e4
commit 60bf389825
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ if len(lib_path) == 0:
raise XGBoostLibraryNotFound("XGBoost library not found. Did you run "
"../make?")
setup(name="xgboost",
version="0.32",
version="0.40",
description="Python wrappers for XGBoost: eXtreme Gradient Boosting",
zip_safe=False,
py_modules=['xgboost'],

View File

@ -1,8 +1,8 @@
# coding: utf-8
"""
xgboost: eXtreme Gradient Boosting library
Version: 0.40
Authors: Tianqi Chen, Bing Xu
Early stopping by Zygmunt Zając
"""