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

Conda forge only #183

Merged
merged 2 commits into from
Feb 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
1 change: 0 additions & 1 deletion .github/reference-workflows/CI_1_1_1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jobs:
condarc: |
channels:
- conda-forge
- defaults
create-args: >-
python=${{ matrix.python-version }}

Expand Down
1 change: 0 additions & 1 deletion .github/reference-workflows/CI_1_1_2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jobs:
condarc: |
channels:
- conda-forge
- defaults
create-args: >-
python=${{ matrix.python-version }}

Expand Down
1 change: 0 additions & 1 deletion .github/reference-workflows/CI_2_1_1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jobs:
condarc: |
channels:
- conda-forge
- defaults
create-args: >-
python=${{ matrix.python-version }}

Expand Down
1 change: 0 additions & 1 deletion .github/reference-workflows/CI_2_1_2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jobs:
condarc: |
channels:
- conda-forge
- defaults
create-args: >-
python=${{ matrix.python-version }}

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/verify-ghas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ jobs:
condarc: |
channels:
- conda-forge
- defaults

- name: Install package

Expand Down
2 changes: 1 addition & 1 deletion cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"Not Open Source"
],
"dependency_source": [
"Prefer conda-forge over the default anaconda channel with pip fallback",
"Prefer conda-forge with pip fallback",
"Prefer default anaconda channel with pip fallback",
"Dependencies from pip only (no conda)"
],
Expand Down
3 changes: 1 addition & 2 deletions {{cookiecutter.repo_name}}/.github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,10 @@ jobs:
with:
environment-file: devtools/conda-envs/test_env.yaml
environment-name: test
{%- if cookiecutter.dependency_source == 'Prefer conda-forge over the default anaconda channel with pip fallback' %}
{%- if cookiecutter.dependency_source == 'Prefer conda-forge with pip fallback' %}
condarc: |
channels:
- conda-forge
- defaults
{%- elif cookiecutter.dependency_source == 'Prefer default anaconda channel with pip fallback' %}
condarc: |
channels:
Expand Down
Loading