Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #595 +/- ##
=======================================
Coverage 99.81% 99.81%
=======================================
Files 5 5
Lines 1600 1600
=======================================
Hits 1597 1597
Misses 3 3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
* run tests and docs CI on 3.14 * Minimial changes to pinnings that require minimal code/markup changes
grahamgower
reviewed
Mar 24, 2026
.github/workflows/docs.yaml
Outdated
Comment on lines
+13
to
+15
| strategy: | ||
| matrix: | ||
| python-version: ["3.12", "3.14"] |
Member
There was a problem hiding this comment.
This will trigger the docs to be deployed multiple times. If you really want to test building on multiple python versions, then the docs build job will need to be separate from the deploy job.
Collaborator
Author
There was a problem hiding this comment.
I disabled 3.12 here. Ideally we'd test on more versions but that is more important for the actual test suite. Realistically anyone contributing a PR will be working on 3.13 or later.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR adds doc and test CI for 3.14.
Adding 3.14 required bumping some dependencies.
Unfortunately, we now have to pin
ipython<9or fix markup in the manual here and in demes-spec. (This is ultimately part of the root of #592.) I am kicking that can down the road for now.Ideally, we'd be testing 3.10 and 3.14 here instead of 3.12 and 3.14. I have confirmed locally that the docs build with 3.14 and the
uv.lockin this PR.