Skip to content

Commit 74c03fd

Browse files
committed
fix pattern
Signed-off-by: Sylvain Hellegouarch <[email protected]>
1 parent e198cc0 commit 74c03fd

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
## [Unreleased][]
44

5-
[Unreleased]: https://github.com/chaostoolkit/chaostoolkit-reporting/compare/0.14.1...HEAD
5+
[Unreleased]: https://github.com/chaostoolkit/chaostoolkit-reporting/compare/0.14.2...HEAD
6+
7+
## [0.14.2][] - 2023-02-27
8+
9+
[0.14.2]: https://github.com/chaostoolkit/chaostoolkit-reporting/compare/0.14.1...0.14.2
10+
11+
### Fixed
12+
13+
- Python miniaml version pattern as per https://github.com/pypa/packaging/issues/673
614

715
## [0.14.1][] - 2022-12-08
816

chaosreport/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"generate_report_header",
3434
"save_report",
3535
]
36-
__version__ = "0.14.1"
36+
__version__ = "0.14.2"
3737

3838
curdir = os.getcwd()
3939
basedir = os.path.dirname(__file__)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def get_version_from_package() -> str:
7575
install_requires=install_require,
7676
tests_require=test_require,
7777
setup_requires=pytest_runner,
78-
python_requires='>=3.7.*',
78+
python_requires='>=3.7',
7979
entry_points="""
8080
[chaostoolkit.cli_plugins]
8181
report=chaosreport.cli:report

0 commit comments

Comments
 (0)