Skip to content

Commit

Permalink
REL v0.3.0 cuDF release
Browse files Browse the repository at this point in the history
Includes rapidsai#354 C/C++ refactor
  • Loading branch information
mike-wendt committed Nov 23, 2018
1 parent c9fbc8b commit 3f8b709
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions conda/environments/builddocs_py35.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ dependencies:
- pytest
- cudatoolkit=9.2
- nvdriver=396.44
- libcudf=0.2.0.*
- libcudf_cffi=0.2.0.*
- libcudf=0.3.*
- libcudf_cffi=0.3.*
- numba>=0.40.0dev
- nvstrings
- pandas=0.20.*
Expand Down
8 changes: 4 additions & 4 deletions conda/recipes/cudf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ requirements:
- python
- cython=0.28.*
- setuptools
- libcudf 0.2.0.*
- libcudf_cffi 0.2.0.*
- libcudf 0.3.*
- libcudf_cffi 0.3.*
- numba>=0.40.0dev
- nvstrings
run:
- python
- cython=0.28.*
- setuptools
- libcudf 0.2.0.*
- libcudf_cffi 0.2.0.*
- libcudf 0.3.*
- libcudf_cffi 0.3.*
- pandas 0.20.*
- numba>=0.40.0dev
- nvstrings
Expand Down
4 changes: 2 additions & 2 deletions cpp/python/setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from setuptools import setup

setup(name='libgdf_cffi',
version="0.2.0",
version="0.3.0",
packages=["libgdf_cffi"],
setup_requires=["cffi>=1.0.0"],
cffi_modules=["libgdf_cffi/libgdf_build.py:ffibuilder"],
install_requires=["cffi>=1.0.0"],
)

setup(name='librmm_cffi',
version="0.2.0",
version="0.3.0",
packages=["librmm_cffi"],
setup_requires=["cffi>=1.0.0"],
cffi_modules=["librmm_cffi/librmm_build.py:ffibuilder"],
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
# built documents.
#
# The short X.Y version.
version = '0.2.0'
version = '0.3.0'
# The full version, including alpha/beta/rc tags.
release = '0.2.0'
release = '0.3.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 3f8b709

Please sign in to comment.