Releases: dnv-opensource/dictIO
Releases · dnv-opensource/dictIO
v0.4.4
Maintenance Update
Changed
- Renamed command line script
src/dictIO/cli/dictParser.pytosrc/dictIO/cli/__main__.py - VS Code Settings:
- .vscode/launch.json: Corrected the CLI debug launch configuration
- Updated code base with latest changes in python_project_template v0.2.10
Dependencies
- .pre-commit-config.yaml: Updated rev of ruff-pre-commit to v0.15.7
- Updated to numpy>=2.4
- Updated to pytest-cov>=7.1
- Updated to ruff>=0.15.7
- Updated to sphinx-argparse-cli>=1.21.3
- Updated to types-lxml>=2026.2
v0.4.3
Solved
- Resolved an issue where attributes in XML nodes, which had an empty string as value, were omitted. The XmlParser and XmlFormatter classes have now been improved to correctly parse and format attributes that have an empty string as value.
Changed
- GitHub Workflows:
- Added 'name: Checkout code' to uses of 'actions/checkout', for better readability and consistency across workflow files.
- Added 'name: Download build artifacts' to uses of 'actions/download-artifact', for better readability and consistency across workflow files.
- Added 'name: Publish to PyPI' to uses of 'pypa/gh-action-pypi-publish', for better readability and consistency across workflow files.
- Added 'name: Upload build artifacts' to uses of 'actions/upload-artifact', for better readability and consistency across workflow files.
- Changed 'uv sync --upgrade' to 'uv sync -U'
- Ensured that actions 'upload-artifact' and 'download-artifact' uniformly specify 'dist' as (file)name for the artifact uploaded (or downloaded, respectively), for consistency across workflow files.
- pull_request_to_main.yml and nightly_build.yml: Added 'workflow_dispatch:' in selected workflows to allow manual trigger of the workflow.
- Removed redundant 'Set up Python' steps (no longer needed, as 'uv sync' will automatically install Python if not present).
- Replaced 'Build source distribution and wheel' with 'Build source distribution and wheels' (plural) in workflow step names.
- Replaced 'Run twine check' with 'Check build artifacts' in workflow step names, to better reflect the purpose of the step.
- Updated the syntax used for the OS and Python matrix in test workflows.
- pyproject.toml:
- Removed leading carets and trailing slashes from 'exclude' paths
- Removed upper version constraint from required Python version, i.e. changed the "requires-python" field from ">= 3.11, < 3.15" to ">= 3.11".
Detailed background and reasoning in this good yet long post by Henry Schreiner:
https://iscinumpy.dev/post/bound-version-constraints/#pinning-the-python-version-is-special
TLDR: Placing an upper Python version constraint on a Python package causes more harm than it provides benefits.
The upper version constraint unnecessarily manifests incompatibility with future Python releases.
Removing the upper version constraint ensures the package remains installable as Python evolves.
In the majority of cases, the newer Python version will anyhow be backward-compatible. And in the rare case where your package would really not work with a newer Python version,
users can at least find a solution manually to resolve the conflict, e.g. by pinning your package to the last version compatible with the environment they install it in.
That way, we ensure it remains possible for users to find a solution, instead of rendering it impossible forever.
- Sphinx Documentation:
- Sphinx conf.py: Updated year in copyright statement to 2026
- VS Code Settings:
- Recommended extensions:
- Removed 'njqdev.vscode-python-typehint' (Python Type Hint). Not maintained since 1 year, and the functionality is now covered by GitHub Copilot.
- Added 'ms-python.debugpy' (Python Debugger).
- Added 'ms-python.vscode-python-envs' (Python Environments).
- Removed deprecated IntelliCode extension and replaced it by GitHub Copilot Chat as recommended replacement.
- Updated 'mypy-type-checker.reportingScope' to 'custom'.
- Recommended extensions:
- README.md: Updated year in copyright statement to 2026
- ruff.toml: Updated target Python version to "py311"
Dependencies
- .pre-commit-config.yaml: Updated rev of ruff-pre-commit to v0.15.1
- Updated to furo>=2025.12
- Updated to jsonschema>=4.26
- Updated to jupyter-client>=8.8
- Updated to jupyter>=1.1.1
- Updated to mypy>=1.19.1
- Updated to myst-parser>=5.0
- Updated to nbconvert>=7.17
- Updated to pre-commit>=4.5
- Updated to pyright>=1.1.408
- Updated to pytest>=9.0
- Updated to ruff>=0.15.1
- Updated to sourcery>=1.43.0
- Updated to sphinx-argparse-cli>=1.20.1
- Updated to sphinx-autodoc-typehints>=3.6
- Updated to sphinx>=9.0
- Updated to sphinxcontrib-mermaid>=2.0
- Updated to types-lxml>=2026.1
v0.4.2
Added
- Added support for Python 3.14
Removed
- Removed support for Python 3.10
Dependencies
- Updated to ruff>=0.14.3 (from ruff>=0.9.2)
- Updated to pyright>=1.1.407 (from pyright>=1.1.392)
- Updated to sourcery>=1.40 (from sourcery>=1.31)
- Updated to lxml>=6.0 (from lxml>=5.3)
- Updated to types-lxml>=2025.8 (from types-lxml>=2024.12)
- Updated to numpy>=2.3 (removed split version specifiers)
- Updated to pytest>=8.4 (from pytest>=8.3)
- Updated to pytest-cov>=7.0 (from pytest-cov>=6.0)
- Updated to Sphinx>=8.2 (from Sphinx>=8.1)
- Updated to sphinx-argparse-cli>=1.20 (from sphinx-argparse-cli>=1.19)
- Updated to sphinx-autodoc-typehints>=3.5 (from sphinx-autodoc-typehints>=3.0)
- Updated to furo>=2025.9 (from furo>=2024.8)
- Updated to pre-commit>=4.3 (from pre-commit>=4.0)
- Updated to mypy>=1.18 (from mypy>=1.14)
- Updated to checkout@v5 (from checkout@v4)
- Updated to setup-python@v6 (from setup-python@v5)
- Updated to setup-uv@v7 (from setup-uv@v5)
- Updated to upload-artifact@v5 (from upload-artifact@v4)
- Updated to download-artifact@v5 (from download-artifact@v4)
Changed
- Do not run code quality checks in nightly builds
- Included uv.lock file in version control
- pyproject.toml:
- added required-environments to uv.tools (windows, linux, macos)
- updated required Python version to ">= 3.11, < 3.15"
- updated supported Python versions to 3.11, 3.12, 3.13, 3.14
- removed deprecated pyright setting 'reportShadowedImports'
- removed deprecated mypy plugin 'numpy.typing.mypy_plugin'
- GitHub workflow _test.yml:
- updated Python versions in test matrix to 3.11, 3.12, 3.13, 3.14
- GitHub workflow _test_future.yml:
- updated Python version in test_future to 3.15.0-alpha - 3.15.0
- .pre-commit-config.yaml:
- updated rev of pre-commit-hooks to v6.0.0
- updated rev of ruff-pre-commit to v0.14.3
- updated id of ruff to ruff-check
- Sphinx conf.py:
- removed ruff rule exception on file level
- demos\folder_for_demos.py:
- removed ruff rule exception
- .sourcery.yaml:
- updated the lowest Python version the project supports to '3.11'
Solved
- Resolved issues raised by
ruff0.14.3
v0.4.1
Added
- Added support for Python 3.13
- Added CITATION.cff
- pyproject.toml : Added keywords
Solved
- Resolved issues raised by
ruff0.9.2
Dependencies
- Updated to ruff>=0.9.2 (from ruff>=0.6.3)
- Updated to pyright>=1.1.392 (from pyright>=1.1.378)
- Updated to sourcery>=1.31 (from sourcery>=1.22)
- Updated to types-lxml>=2024.12 (from types-lxml>=2024.4)
- Updated to sphinx-autodoc-typehints>=3.0 (from sphinx-autodoc-typehints>=2.2)
- Updated to mypy>=1.14 (from mypy>=1.13)
- Updated to setup-uv@v5 (from setup-uv@v2)
- Updated to lxml>=5.3 (from lxml>=5.2)
- Updated to jupyter>=1.1 (from jupyter>=1.0)
- Updated to pytest-cov>=6.0 (from pytest-cov>=5.0)
- Updated to Sphinx>=8.1 (from Sphinx>=8.0)
- Updated to sphinx-argparse-cli>=1.19 (from sphinx-argparse-cli>=1.17)
- Updated to pre-commit>=4.0 (from pre-commit>=3.8)
- Updated to mypy>=1.14 (from mypy>=1.11.1)
- numpy: As Python 3.13 requires numpy 2.x, made minimum required numpy version in pyproject.toml dependent on Python version:
- "numpy>=1.26; python_version < '3.13'",
- "numpy>=2.2; python_version >= '3.13'",
v0.4.0
Breaking changes
- Renamed modules: Following modules have been renamed in order to comply with PEP8 naming conventions:
dictIO.dictReader->dictIO.dict_reader
dictIO.dictWriter->dictIO.dict_writer
dictIO.dictParser->dictIO.dict_parser
dictIO.cppDict->dictIO.cpp_dict - Module
formatter.py:
RenamedFormatter.format_type()->Formatter.format_value() - Module
parser.py:
RenamedParser.parse_type()->Parser.parse_value()
RenamedParser.parse_types()->Parser.parse_values() - class
CppDictin moduledictIO.cppDicthas been replaced with the new classSDict[K, V]in moduledictIO.dict.
In order to maintain backward compatibility, a thin wrapper class namedCppDictis kept in version ~0.4.0.
It is marked as deprecated, though, and will be removed with release 0.5.0. - Where
CppDictinherited fromUserDict,SDictinherits directly from Python'sdictclass,
allowing to use it in any context where adictor any otherMutableMappingis expected. SDictis generic: Static type checkers will hence require type arguments whenSDictis used.
Where in dictIO < 0.4.0 you could write
my_dict: CppDict = CppDict(),
you will now need to specify the type arguments, e.g.
my_dict: SDict[str, Any] = SDict().
With this change, type hinting is in line with how Python's builtindictclass works, and offers more control in static type checking.
Changed
- Changed from
pip/toxtouvas package manager - README.md : Completely rewrote section "Development Setup", introducing
uvas package manager. - Changed publishing workflow to use OpenID Connect (Trusted Publisher Management) when publishing to PyPI
- Updated copyright statement
- VS Code settings: Turned off automatic venv activation
- Replaced black formatter with ruff formatter
Solved
- Sphinx documentation: Resolved issue that documentation of class members was generated twice.
Added
- Sphinx documentation: Added extension to support Markdown-based diagrams created with Mermaid.
- Added instance methods
dump()andload()toSDict - Added
mypyas static type checker (in addition topyright)
GitHub workflows
- (all workflows): Adapted to use
uvas package manager - _test_future.yml : updated Python version to 3.13.0-alpha - 3.13.0
- _test_future.yml : updated name of test job to 'test313'
Dependencies
- Updated to ruff>=0.6.3 (from ruff==0.4.2)
- Updated to pyright>=1.1.378 (from pyright==1.1.360)
- Updated to sourcery>=1.22 (from sourcery==1.16)
- Updated to pytest>=8.3 (from pytest>=8.2)
- Updated to Sphinx>=8.0 (from Sphinx>=7.3)
- Updated to sphinx-argparse-cli>=1.17 (from sphinx-argparse-cli>=1.16)
- Updated to myst-parser>=4.0 (from myst-parser>=3.0)
- Updated to furo>=2024.8 (from furo>=2024.5)
- updated to setup-python@v5 (from setup-python@v4)
- updated to actions-gh-pages@v4 (from actions-gh-pages@v3)
- updated to upload-artifact@v4 (from upload-artifact@v3)
- Updated to download-artifact@v4 (from download-artifact@v3)
- updated to checkout@v4 (from checkout@v3)
v0.4.0b10
Pre-release v0.4.0b10
v0.4.0b3
Pre-release v0.4.0b3
v0.4.0b2
Pre-release v0.4.0b2
v0.4.0b1
Pre-release v0.4.0b1
v0.3.4
Dependencies
- updated to ruff==0.4.2 (from ruff==0.2.1)
- updated to pyright==1.1.360 (from pyright==1.1.350)
- updated to sourcery==1.16 (from sourcery==1.15)
- updated to lxml>=5.2 (from lxml>=5.1)
- updated to types-lxml>=2024.4 (from types-lxml>=5.1)
- updated to pytest>=8.2 (from pytest>=7.4)
- updated to pytest-cov>=5.0 (from pytest-cov>=4.1)
- updated to Sphinx>=7.3 (from Sphinx>=7.2)
- updated to sphinx-argparse-cli>=1.15 (from sphinx-argparse-cli>=1.11)
- updated to myst-parser>=3.0 (from myst-parser>=2.0)
- updated to furo>=2024.4 (from furo>=2023.9.10)
- updated to numpy>=1.26,<2.0 (from numpy>=1.26)
- removed black
Changed
- replaced black formatter with ruff formatter
- Changed publishing workflow to use OpenID Connect (Trusted Publisher Management) when publishing to PyPI
- Updated copyright statement
- VS Code settings: Turned off automatic venv activation