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

Bump Python and RAPIDS versions #16

Merged
merged 11 commits into from
Apr 2, 2024
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
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ jobs:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Optionally free up space on Ubuntu
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ These modules are designed to be flexible and allow for reordering with few exce

## Installation

NeMo Curator currently requires a GPU with CUDA 12 or above installed in order to be used.
NeMo Curator currently requires Python 3.10 and a GPU with CUDA 12 or above installed in order to be used.

NeMo Curator can be installed manually by cloning the repository and installing as follows:
```
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"Programming Language :: Python :: 3",
],
packages=find_packages(),
python_requires=">=3.7",
python_requires=">=3.10, <3.11",
install_requires=[
"dask[complete]>=2021.7.1",
"distributed>=2021.7.1",
Expand All @@ -55,10 +55,10 @@
"comment_parser",
"beautifulsoup4",
"mwparserfromhell @ git+https://github.com/earwig/mwparserfromhell.git@0f89f44",
"cudf-cu12==23.10.*",
"dask-cudf-cu12==23.10.*",
"cugraph-cu12==23.10.*",
"dask-cuda==23.10.*",
"cudf-cu12>=24.2",
"dask-cudf-cu12>=24.2",
"cugraph-cu12>=24.2",
"dask-cuda>=24.2",
"spacy>=3.6.0, <4.0.0",
"presidio-analyzer==2.2.351",
"presidio-anonymizer==2.2.351",
Expand Down