Skip to content

Commit

Permalink
feat!: use conda-forge channel by default (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
olevski authored Aug 18, 2023
1 parent a635c82 commit 6448f8e
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 6 deletions.
9 changes: 8 additions & 1 deletion R-minimal/environment.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: "base"
# WARNING : As Renku makes use of mamba for more efficient package builds, please use the popular "conda-forge" channel
# For more details : https://mamba.readthedocs.io/en/latest/user_guide/troubleshooting.html#mixing-the-defaults-and-conda-forge-channels
# Using the defaults channel from Anaconda can easily result in getting your
# laptop, CI pipeline, etc. blacklisted by Anaconda which makes building packages
# impossible. To get permission to use Anaconda again you need to either pay or prove that
# you meet the requirements for a free license. Using the conda-forge channel avoids
# these restrictions completely.
channels:
- defaults
- conda-forge
# dependencies:
# - add packages here
# - one per line
Expand Down
9 changes: 8 additions & 1 deletion bioc-minimal/environment.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: "base"
# WARNING : As Renku makes use of mamba for more efficient package builds, please use the popular "conda-forge" channel
# For more details : https://mamba.readthedocs.io/en/latest/user_guide/troubleshooting.html#mixing-the-defaults-and-conda-forge-channels
# Using the defaults channel from Anaconda can easily result in getting your
# laptop, CI pipeline, etc. blacklisted by Anaconda which makes building packages
# impossible. To get permission to use Anaconda again you need to either pay or prove that
# you meet the requirements for a free license. Using the conda-forge channel avoids
# these restrictions completely.
channels:
- defaults
- conda-forge
# dependencies:
# - add packages here
# - one per line
Expand Down
9 changes: 7 additions & 2 deletions julia-minimal/environment.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: "base"
# WARNING : As Renku makes use of mamba for more efficient package builds, please use EITHER the Ananconda "defaults" channel OR the popular "conda-forge" channels
# WARNING : As Renku makes use of mamba for more efficient package builds, please use the popular "conda-forge" channel
# For more details : https://mamba.readthedocs.io/en/latest/user_guide/troubleshooting.html#mixing-the-defaults-and-conda-forge-channels
# Using the defaults channel from Anaconda can easily result in getting your
# laptop, CI pipeline, etc. blacklisted by Anaconda which makes building packages
# impossible. To get permission to use Anaconda again you need to either pay or prove that
# you meet the requirements for a free license. Using the conda-forge channel avoids
# these restrictions completely.
channels:
- defaults
- conda-forge
# dependencies:
# - add packages here
# - one per line
Expand Down
9 changes: 7 additions & 2 deletions python-minimal/environment.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: "base"
# WARNING : As Renku makes use of mamba for more efficient package builds, please use EITHER the Ananconda "defaults" channel OR the popular "conda-forge" channels
# WARNING : As Renku makes use of mamba for more efficient package builds, please use the popular "conda-forge" channel
# For more details : https://mamba.readthedocs.io/en/latest/user_guide/troubleshooting.html#mixing-the-defaults-and-conda-forge-channels
# Using the defaults channel from Anaconda can easily result in getting your
# laptop, CI pipeline, etc. blacklisted by Anaconda which makes building packages
# impossible. To get permission to use Anaconda again you need to either pay or prove that
# you meet the requirements for a free license. Using the conda-forge channel avoids
# these restrictions completely.
channels:
- defaults
- conda-forge
# dependencies:
# - add packages here
# - one per line
Expand Down

0 comments on commit 6448f8e

Please sign in to comment.