-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CI run running on oldest supported versions of core dependencie
- Loading branch information
Showing
3 changed files
with
11 additions
and
5 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ jobs: | |
- uses: pre-commit/[email protected] | ||
with: | ||
extra_args: --files $(git diff origin/main --name-only) | ||
|
||
tests: | ||
runs-on: ${{ matrix.os }} | ||
needs: lint | ||
|
@@ -42,6 +43,7 @@ jobs: | |
- os: ubuntu-latest | ||
python-version: "3.10" | ||
install-method: mamba | ||
extra-args: ["oldest-deps"] | ||
|
||
- os: ubuntu-latest | ||
python-version: "3.10" | ||
|
@@ -127,7 +129,11 @@ jobs: | |
pip install -e .[tests] | ||
pip install ./test_plugin | ||
pip freeze | ||
pip list | ||
- if: contains(matrix.extra-args, 'oldest-deps') && contains(github.event.pull_request.labels.*.name, 'documentation-only') == false | ||
run: | | ||
mamba install -y numpy=1.24 numba=0.56 scipy=1.10 astropy=5.3 matplotlib=3.6 | ||
mamba list | ||
- name: ctapipe-info | ||
if: contains(github.event.pull_request.labels.*.name, 'documentation-only') == false | ||
|
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