Update Python dependencies (major)#290
Merged
carlcsaposs-canonical merged 2 commits intomainfrom Jul 22, 2025
Merged
Conversation
taurus-forever
approved these changes
Jul 22, 2024
4266953 to
e3be226
Compare
e3be226 to
810db96
Compare
c2aeef1 to
839cb0a
Compare
a02f1c0 to
0d24842
Compare
b526926 to
6de2051
Compare
Author
|
f69f481 to
3c0ad67
Compare
3c0ad67 to
e1125de
Compare
e1125de to
f489c00
Compare
f489c00 to
610f844
Compare
270aa14 to
4ad50e7
Compare
f1d317e to
98edaca
Compare
9685a28 to
b2effd7
Compare
b2effd7 to
2ed5354
Compare
2ed5354 to
924f190
Compare
924f190 to
d94a751
Compare
d94a751 to
004febe
Compare
carlcsaposs-canonical
approved these changes
Mar 4, 2025
c0a2032 to
079d67a
Compare
079d67a to
0c32dc3
Compare
Author
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
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 contains the following updates:
^1.9.0->^2.1.3^5.0.0->^6.2.1^8.5.0->^9.1.2Release Notes
canonical/cos-lib (cosl)
v1.0.0Compare Source
What's Changed
coordinated_workersout ofcoslby @michaeldmitry in https://github.com/canonical/cos-lib/pull/146Full Changelog: canonical/cos-lib@0.1.1...1.0.0
v0.1.1Compare Source
What's Changed
coordinated_workersmodule by @michaeldmitry in https://github.com/canonical/cos-lib/pull/148Full Changelog: canonical/cos-lib@0.1.0...0.1.1
v0.1.0Compare Source
What's Changed
Full Changelog: canonical/cos-lib@0.0.57...0.1.0
v0.0.57Compare Source
Surface an otherwise hard-to-spot issue, where the ingress is handing the coordinated workers an HTTPS endpoint, but the coordinator and workers themselves don't have a certificates relation.
Workers and coordinator now set blocked on TLS misconfiguration.
What's Changed
test-distributed-charmsCI workflow by @michaeldmitry in https://github.com/canonical/cos-lib/pull/134Full Changelog: canonical/cos-lib@0.0.56...0.0.57
v0.0.56Compare Source
What's Changed
Full Changelog: canonical/cos-lib@0.0.55...0.0.56
pyca/cryptography (cryptography)
v45.0.5Compare Source
v45.0.4Compare Source
v45.0.3Compare Source
v45.0.2Compare Source
v45.0.1Compare Source
v45.0.0Compare Source
v44.0.3Compare Source
python-poetry/poetry-core (poetry-core)
v2.1.3Compare Source
Changed
Fixed
projectsection were treated as non-optional when a source was defined for them in thetool.poetrysection (#857).===were not parsed correctly (#860).extramarkers with a value starting with "in" were not validated correctly (#862).WheelBuilderwas unnecessarily difficult (#855).v2.1.2Compare Source
Changed
Fixed
#846).
extramarkers were not simplified (#842,#845,
#847).
python_versionmarkers was not recognized as empty (#849).python_versionmarkers were not simplified (#848,#851).
v2.1.1Compare Source
Fixed
python_versionmarker resulted in an invalid marker (#838).v2.1.0Compare Source
Added
poetryinstance (#319).has_upper_bound methodtoVersionConstraint(#833).Changed
extramarkers (#818).#832).
python_versionmarkers (#826).Fixed
__pycache__directory and*.pycfiles were included in sdists and wheels (#835).v2.0.1Compare Source
Changed
Home-pagewithProject-URL: Homepage(#807).Fixed
tool.poetry.packageswithout a specifiedformatwere not initialized with the default value resulting in aKeyError(#805).project.urlsentries were not processed correctly resulting in aKeyError(#807).project.dependenciesviatool.poetry.dependencieswere ignored ifproject.optional-dependencieswere defined (#811).v2.0.0Compare Source
Added
projectsection in thepyproject.tomlfile according to PEP 621 (#708,#792).
platform_releasemarker (#722).in/not inin generic constraints (#722).SOURCE_DATE_EPOCHwhen building packages (#766,#781).
Changed
METADATAfiles with version 2.3 instead of 2.2 (#707).allow-prereleasesa tri-state setting (#783).Errorsuffix (#767).xin version constraints (#770).#769).
tool.poetry.dev-dependenciesin favor oftool.poetry.group.dev.dependencies(#754).Package.python_marker(#446).pyproject.tomlfile cannot be parsed (#734).readmefiles (#752).#718,
#727,
#736,
#746,
#755,
#764,
#784,
#787,
#795).
Fixed
platlibdirectory of the wrong Python was used (#726).+was not allowed in git URL paths (#765).Vendoring
fastjsonschema==2.21.1lark==1.2.2packaging==24.2tomli==2.2.1v1.9.1Compare Source
Added
3.13to the list of available Python versions (#747).pytest-dev/pytest-cov (pytest-cov)
v6.2.1Compare Source
Added a version requirement for pytest's pluggy dependency (1.2.0, released 2023-06-21) that has the required new-style hookwrapper API.
Removed deprecated license classifier (packaging).
Disabled coverage warnings in two more situations where they have no value:
v6.2.0Compare Source
The plugin now adds 3 rules in the filter warnings configuration to prevent common coverage warnings being raised as obscure errors::
default:unclosed database in <sqlite3.Connection object at:ResourceWarning
once::PytestCovWarning
once::CoverageWarning
This fixes most of the bad interactions that are occurring on pytest 8.4 with
filterwarnings=error.The plugin will check if there already matching rules for the 3 categories
(
ResourceWarning,PytestCovWarning,CoverageWarning) and message (unclosed database in <sqlite3.Connection object at) before adding the filters.This means you can have this in your pytest configuration for complete oblivion (not recommended, if that is not clear)::
filterwarnings = [
"error",
"ignore:unclosed database in <sqlite3.Connection object at:ResourceWarning",
"ignore::PytestCovWarning",
"ignore::CoverageWarning",
]
v6.1.1Compare Source
--cov-contextand theno_covermarker are used together.v6.1.0Compare Source
Contributed by Tsvika Shapira in
#​678 <https://github.com/pytest-dev/pytest-cov/pull/678>_.#​675 <https://github.com/pytest-dev/pytest-cov/issues/675>_.--cov-precision.v6.0.0Compare Source
Now it will perform the check just like
coverage reportwould.--cov-precisioncli option that can override the value set in your coverage configuration.jd/tenacity (tenacity)
v9.1.2Compare Source
Full Changelog: jd/tenacity@9.1.1...9.1.2
v9.0.0: tenacity 9.0.0Compare Source
What's Changed
minargument forwait_random_exponentialby @yxtay in https://github.com/jd/tenacity/pull/425Full Changelog: jd/tenacity@8.5.0...9.0.0
Configuration
📅 Schedule: Branch creation - Between 01:00 AM and 05:59 AM, only on Tuesday ( * 1-5 * * 2 ) in timezone Etc/UTC, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.