Skip to content

Commit 3d68fc7

Browse files
chore: List release candidates, alpha, and beta releases (#2071)
* List the release candidates, alpha releases, and beta releases that are installed as part of testing against dependencies with the '--pre' pip flag to help make it easier to visually identify them in the CI logs.
1 parent 3eac67a commit 3d68fc7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/dependencies-head.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ jobs:
3333
python -m pip --no-cache-dir --quiet install --upgrade --pre .[test]
3434
python -m pip list
3535
36+
- name: List release candidates, alpha, and beta releases
37+
run: |
38+
python -m pip list | egrep '[0-9](rc|[ab])[0-9]'
39+
3640
- name: Test with pytest
3741
run: |
3842
pytest --ignore tests/contrib --ignore tests/benchmarks --ignore tests/test_notebooks.py

0 commit comments

Comments
 (0)