Skip to content

Commit

Permalink
Try excluding the channel, running env update
Browse files Browse the repository at this point in the history
  • Loading branch information
the-other-james committed Sep 23, 2024
1 parent 883cc3a commit b7250c5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
run: conda config --show channels
- name: Lint Project
shell: bash -l {0}
run: pylint onair plugins test
run: |
conda env update
pylint onair plugins test
- name: Check Formatting
shell: bash -l {0}
run: black --check .
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
shell: bash -l {0}
run: |
conda info
conda env update
conda list
- name: Test with pytest
shell: bash -l {0}
Expand Down
2 changes: 2 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: onair
channels:
- conda-forge
- nodefaults
exclude:
- defaults
dependencies:
- python>=3.8,<3.13
- numpy
Expand Down
2 changes: 2 additions & 0 deletions environment_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: onair
channels:
- conda-forge
- nodefaults
exclude:
- defaults
dependencies:
- python>=3.8,<3.13
- numpy
Expand Down

0 comments on commit b7250c5

Please sign in to comment.