Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Next release is 4.0.0 as we have breaking changes (#388), I figure we should drop support for Python 3.7 as part of it as this PR does.
Adjustments to tests
Previously we tested against jupyter_server 1 in one specific test job, in the one with Python 3.7. When this was removed we no longer tested against it. So I've added
jupyter_server-version
to the test matrix. Doing so we went from 8 to 16 jobs though which is quite a lot.I considered how to reduce the large amounts of jobs, and concluded a reasonable strategy was to add another job step and remove the
jupyter-app
test matrix variable. So, now we have two steps in sequence, running pytest first against ajupyter-notebook
server then against ajupyter-lab
server. This duplicated step takes ~13 second, so its a small step compared to the job that takes ~3-4 minutes.