Skip to content

Commit 0800b74

Browse files
authored
fix(deps): Update dependency iniconfig to v2.3.0 (#352)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [iniconfig](https://redirect.github.com/pytest-dev/iniconfig) | minor | `==2.1.0` -> `==2.3.0` | --- ### Release Notes <details> <summary>pytest-dev/iniconfig (iniconfig)</summary> ### [`v2.3.0`](https://redirect.github.com/pytest-dev/iniconfig/blob/HEAD/CHANGELOG#230) [Compare Source](https://redirect.github.com/pytest-dev/iniconfig/compare/v2.2.0...v2.3.0) \===== - add IniConfig.parse() classmethod with strip_inline_comments parameter (fixes [#&#8203;55](https://redirect.github.com/pytest-dev/iniconfig/issues/55)) - by default (strip_inline_comments=True), inline comments are properly stripped from values - set strip_inline_comments=False to preserve old behavior if needed - IniConfig() constructor maintains backward compatibility (does not strip inline comments) - users should migrate to IniConfig.parse() for correct comment handling - add strip_section_whitespace parameter to IniConfig.parse() (regarding [#&#8203;4](https://redirect.github.com/pytest-dev/iniconfig/issues/4)) - opt-in parameter to strip Unicode whitespace from section names - when True, strips Unicode whitespace (U+00A0, U+2000, U+3000, etc.) from section names - when False (default), preserves existing behavior for backward compatibility - clarify Unicode whitespace handling (regarding [#&#8203;4](https://redirect.github.com/pytest-dev/iniconfig/issues/4)) - since iniconfig 2.0.0 (Python 3 only), all strings are Unicode by default - Python 3's str.strip() has handled Unicode whitespace since Python 3.0 (2008) - iniconfig automatically benefits from this in all supported versions (Python >= 3.10) - key names and values have Unicode whitespace properly stripped using Python's built-in methods ### [`v2.2.0`](https://redirect.github.com/pytest-dev/iniconfig/blob/HEAD/CHANGELOG#220) [Compare Source](https://redirect.github.com/pytest-dev/iniconfig/compare/v2.1.0...v2.2.0) \===== - drop Python 3.8 and 3.9 support (now requires Python >= 3.10) - add Python 3.14 classifier - migrate from hatchling to setuptools 77 with setuptools_scm - adopt PEP 639 license specifiers and PEP 740 build attestations - migrate from black + pyupgrade to ruff - migrate CI to uv and unified test workflow - automate GitHub releases and PyPI publishing via Trusted Publishing - include tests in sdist - modernize code for Python 3.10+ (remove **future** annotations, TYPE_CHECKING guards) - rename \_ParsedLine to ParsedLine </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4yMi4xIiwidXBkYXRlZEluVmVyIjoiNDAuMjIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIl19-->
1 parent c0e84aa commit 0800b74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"black==25.11.0",
1616
"grpcio==1.76.0",
1717
"grpcio-tools==1.76.0",
18-
"iniconfig==2.1.0",
18+
"iniconfig==2.3.0",
1919
"Jinja2==3.1.6",
2020
"MarkupSafe==3.0.3",
2121
"numpy==2.3.5",

0 commit comments

Comments
 (0)