We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The list of dependencies from the .pyproject.toml file is outdated, this doesn't install new dependencies such as dask and xarray.
.pyproject.toml
dask
xarray
To reproduce, clone the current project, then execute the following:
pip install -e . python -c "import torch; print(torch.__version__)" 2.4.0+cu121 python -c "import dask; print(dask.__version__)" Traceback (most recent call last): File "<string>", line 1, in <module> ModuleNotFoundError: No module named 'dask'
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The list of dependencies from the
.pyproject.toml
file is outdated, this doesn't install new dependencies such asdask
andxarray
.To reproduce, clone the current project, then execute the following:
The text was updated successfully, but these errors were encountered: