-
Notifications
You must be signed in to change notification settings - Fork 163
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
Config: Added zstd-static
package to the conda environment configuration files
#2540
Changes from all commits
d703a6f
c5731b7
433e4af
bfa0cde
a68a0b2
94ea770
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,17 @@ name: lp | |
channels: | ||
- conda-forge | ||
dependencies: | ||
- bison=3.4 | ||
- cmake | ||
- flake8 | ||
- llvmdev=11.0.1 | ||
- make | ||
- numpy | ||
- git | ||
- pip | ||
- python=3.10.2 | ||
- make | ||
- re2c | ||
- setuptools | ||
- toml | ||
- zlib | ||
- git | ||
- cmake | ||
- numpy | ||
- flake8 | ||
- setuptools | ||
- bison=3.4 | ||
Comment on lines
+11
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it needed to change the order of specifying dependencies here? It seems hard to interpret which packages where removed and which ones were added. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am sorry for the inconvenience. I did this to improve readability. |
||
- python=3.10.2 | ||
- llvmdev=11.0.1 | ||
- zstd-static=1.5.5 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,18 +2,19 @@ name: lp | |
channels: | ||
- conda-forge | ||
dependencies: | ||
- python=3.10.2 | ||
- numpy | ||
- flake8 | ||
- git | ||
- pip | ||
- make | ||
- re2c | ||
- toml | ||
- zlib | ||
- cmake | ||
- ninja | ||
- numpy | ||
- xonsh | ||
- flake8 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am unsure of the changes in conda for windows. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In both the files, only the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, good. |
||
- setuptools | ||
- llvmdev=11.1.0 | ||
- python=3.10.2 | ||
- m2-bison=3.0.4 | ||
- re2c | ||
- xonsh | ||
- ninja | ||
- cmake | ||
- make | ||
- zlib | ||
- git | ||
- llvmdev=11.1.0 | ||
- zstd-static=1.5.5 |
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 think the first step in linux should be creating the conda environment. The next step can be installing the required global build dependencies.
Similarly, update for
docs/src/installation.md
.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 understand your point @Shaikh-Ubaid, but moving this section will logically separate the conda environment creation part for Linux and Windows. As installing the global dependencies takes some time for a new contributor, I let it remain at the top.
The user can perhaps download Miniforge in the meantime. 😄
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.
Ok, it seems fine for now.