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

[REVIEW] Update pandas versions in conda recipes and requirements.txt files #9197

Merged
merged 1 commit into from
Sep 9, 2021
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conda/recipes/cudf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ requirements:
- protobuf
- python
- typing_extensions
- pandas >=1.0,<1.3.0dev0
- pandas >=1.0,<1.4.0dev0
- cupy >7.1.0,<10.0.0a0
- numba >=0.53.1
- numpy
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/requirements/cuda-11.0/dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ numpy
numpydoc
nvtx>=0.2.1
packaging
pandas>=1.0,<1.3.0dev0
pandas>=1.0,<1.4.0dev0
pandoc==2.0a4
protobuf
pydata-sphinx-theme
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/requirements/cuda-11.2/dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ numpy
numpydoc
nvtx>=0.2.1
packaging
pandas>=1.0,<1.3.0dev0
pandas>=1.0,<1.4.0dev0
pandoc==2.0a4
protobuf
pydata-sphinx-theme
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"fastavro>=0.22.9",
"fsspec>=0.6.0",
"numpy",
"pandas>=1.0,<1.3.0dev0",
"pandas>=1.0,<1.4.0dev0",
"typing_extensions",
"protobuf",
"nvtx>=0.2.1",
Expand Down
2 changes: 1 addition & 1 deletion python/dask_cudf/dev_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ distributed>=2021.6.0
fsspec>=0.6.0
numba>=0.53.1
numpy
pandas>=1.0,<1.3.0dev0
pandas>=1.0,<1.4.0dev0
pytest
setuptools
wheel
Expand Down
4 changes: 2 additions & 2 deletions python/dask_cudf/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
"distributed>=2021.6.0",
"fsspec>=0.6.0",
"numpy",
"pandas>=1.0,<1.3.0dev0",
"pandas>=1.0,<1.4.0dev0",
]

extras_require = {
"test": [
"numpy",
"pandas>=1.0,<1.3.0dev0",
"pandas>=1.0,<1.4.0dev0",
"pytest",
"numba>=0.53.1",
"dask>=2021.6.0",
Expand Down