diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 843f416..76fe9bb 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v6 diff --git a/CHANGELOG.md b/CHANGELOG.md index f30e8c1..d938bfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.4] - 2025-12-19 + +### Changed + +- Depends on utm 0.14.0 (#17). + ## [0.9.3] - 2025-12-19 ### Changed -- Replaced explicit Git URL-based dependency installation to custom package index. +- Replaced explicit Git URL-based dependency installation to custom package index (#18). ## [0.9.2] - 2024-05-23 @@ -86,7 +92,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Depends on utm 0.8.0 -[unreleased]: https://github.com/cms-l1-globaltrigger/tm-diff/compare/0.9.3...HEAD +[unreleased]: https://github.com/cms-l1-globaltrigger/tm-diff/compare/0.9.4...HEAD +[0.9.4]: https://github.com/cms-l1-globaltrigger/tm-diff/compare/0.9.3...0.9.4 [0.9.3]: https://github.com/cms-l1-globaltrigger/tm-diff/compare/0.9.2...0.9.3 [0.9.2]: https://github.com/cms-l1-globaltrigger/tm-diff/compare/0.9.1...0.9.2 [0.9.1]: https://github.com/cms-l1-globaltrigger/tm-diff/compare/0.9.0...0.9.1 diff --git a/README.md b/README.md index efcacda..0de3821 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ XML Menu Diff ## Install ```bash -pip install --index https://globaltrigger.web.cern.ch/pypi tm-diff +pip install --extra-index-url https://globaltrigger.web.cern.ch/pypi tm-diff ``` ## Basic usage diff --git a/setup.cfg b/setup.cfg index 62c7771..b403aa2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,7 +15,7 @@ classifiers = python_requires = >=3.9 packages = find: install_requires = - tm-table~=0.13.0 + tm-table~=0.14.0 test_suite = tests [options.packages.find] diff --git a/tmDiff/__init__.py b/tmDiff/__init__.py index c598173..e94731c 100644 --- a/tmDiff/__init__.py +++ b/tmDiff/__init__.py @@ -1 +1 @@ -__version__ = "0.9.3" +__version__ = "0.9.4" diff --git a/tox.ini b/tox.ini index 5511e2a..8d32518 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py39, py310, py311, py312, py313 +envlist = py39, py310, py311, py312, py313, py314 isolated_build = true skip_missing_interpreters = true