Skip to content
Closed
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
6 changes: 6 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ jobs:
shell: bash -l {0}
run: conda config --show

- name: Optionally install pickle5
shell: bash -l {0}
# pickle5 is used for out-of-band pickling support in Python 3.7
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version < '3.8' }}
run: mamba install -c conda-forge pickle5
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might be worth limiting this to only some Python 3.7 CI jobs given it is still useful to test without pickle5. Though it would be good to have some Python 3.7 jobs that include this.

Not sure how we want to handle that (see partitions above, which might be a useful way to handle this). Though maybe there are better ways.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Addressed by testing both pickle protocol 4 & 5 in PR ( #5313 ).


- name: Install stacktrace
shell: bash -l {0}
# stacktrace for Python 3.8 has not been released at the moment of writing
Expand Down