-
Notifications
You must be signed in to change notification settings - Fork 655
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
FIX-#6587: Use different env files for unidist engine for windows and linux #6588
Merged
anmyachev
merged 4 commits into
modin-project:master
from
YarShev:dev/yigoshev-issue6587
Sep 21, 2023
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: modin_on_unidist | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- pip | ||
|
||
# required dependencies | ||
- pandas>=2.1,<2.2 | ||
- numpy>=1.22.4 | ||
- unidist-mpi>=0.2.1 | ||
- msmpi | ||
- fsspec>=2022.05.0 | ||
- packaging>=21.0 | ||
- psutil>=5.8.0 | ||
|
||
# optional dependencies | ||
- pyarrow>=7.0.0 | ||
- xarray>=2022.03.0 | ||
- jinja2>=3.1.2 | ||
- scipy>=1.8.1 | ||
- s3fs>=2022.05.0 | ||
- lxml>=4.8.0 | ||
- openpyxl>=3.0.10 | ||
- xlrd>=2.0.1 | ||
- matplotlib>=3.6.1 | ||
- sqlalchemy>=1.4.0,<1.4.46 | ||
- pandas-gbq>=0.15.0 | ||
- pytables>=3.7.0 | ||
# pymssql==2.2.8 broken: https://github.com/modin-project/modin/issues/6429 | ||
- pymssql>=2.1.5,!=2.2.8 | ||
- psycopg2>=2.9.3 | ||
- fastparquet>=0.8.1 | ||
- tqdm>=4.60.0 | ||
# pandas isn't compatible with numexpr=2.8.5: https://github.com/modin-project/modin/issues/6469 | ||
- numexpr<2.8.5 | ||
|
||
# dependencies for making release | ||
- pygithub>=v1.58.0 | ||
- pygit2>=1.9.2 | ||
|
||
# test dependencies | ||
- coverage>=7.1.0 | ||
- moto>=4.1.0 | ||
- pytest>=7.3.2 | ||
- pytest-cov>=4.0.0 | ||
- pytest-xdist>=3.2.0 | ||
|
||
# code linters | ||
- black>=23.1.0 | ||
- flake8>=6.0.0 | ||
- flake8-no-implicit-concat>=0.3.4 | ||
- flake8-print>=5.0.0 | ||
- mypy>=1.0.0 | ||
- pandas-stubs>=2.0.0 | ||
|
||
- pip: | ||
# Fixes breaking ipywidgets changes, but didn't release yet. | ||
- git+https://github.com/modin-project/modin-spreadsheet.git@49ffd89f683f54c311867d602c55443fb11bf2a5 | ||
- connectorx>=0.2.6a4 | ||
# The `numpydoc` version should match the version installed in the `lint-pydocstyle` job of the CI. | ||
- numpydoc==1.1.0 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder why it is not a Linux-specific dependency of
unidist-mpi
instead...There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we added any MPI library as a linux-specific dependency of
unidist-mpi
, we would jeopardize the option of using a system-provided MPI library.