Dependency updates, and pyTooling v9.0.0 - #102
Merged
Merged
Conversation
Incorporates the five open Dependabot pull-requests and raises the pyTooling floor past the new major release: * pyTooling ~=8.17 -> >= 9.0, < 11.0, in requirements.txt and in the build dependency of pyproject.toml, which '~=' had capped below 9. * lxml >=6.1 -> >=6.1.1, twine ~=6.2 -> ~=7.0, sphinx_autodoc_typehints ~=3.12 -> ~=3.13, sphinx_reports ~=0.11.1 -> ~=0.11.2, setuptools >=83.0 -> >=84.0.0. doc/Dependency.rst carries the same figures; the version cells are re-padded so the grid tables stay aligned. Co-Authored-By: Patrick Lehmann <Paebbels@gmail.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## dev #102 +/- ##
=======================================
Coverage 80.09% 80.09%
=======================================
Files 7 7
Lines 3456 3456
Branches 410 410
=======================================
Hits 2768 2768
Misses 529 529
Partials 159 159
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. |
The dependency tables carry two-part version numbers to keep the noise down, so a patch release does not move a cell. 'lxml >= 6.1.1' and 'sphinx_reports ~= 0.11.2' are documented as 6.1 and 0.11; the requirement files keep the exact floors. Co-Authored-By: Patrick Lehmann <Paebbels@gmail.com>
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.
Changes
pyToolingis required at v9.0.0 or newer:>= 9.0, < 11.0.pyproject.toml's build dependency was~= 8.17, which excludes 9.x entirely.setup.pyimportspyTooling.Packaging, so that pin decides whether the package can be built at all - bumping onlyrequirements.txtwould have left the build resolving an 8.x.The five open Dependabot pull-requests are incorporated:
pyTooling~=8.17 → ~=8.19, superseded hereby the v9 floor.
sphinx_reports~=0.11.1 → ~=0.11.2.twine~=6.2 → ~=7.0.sphinx_autodoc_typehints~=3.12 → ~=3.13.lxml>=6.1 → >=6.1.1.setuptools>=83.0 → >=84.0.0, matching the other repositories.Documentation
doc/Dependency.rstcarries the same figures in all four tables. The version cells are re-padded, because theseare ReST grid tables and a longer or shorter version string moves the column separator out of line with the row
above.
Related Issues and Pull-Requests