diff --git a/cx_Freeze/__init__.py b/cx_Freeze/__init__.py index 8f05b4098..0bea08ae7 100644 --- a/cx_Freeze/__init__.py +++ b/cx_Freeze/__init__.py @@ -45,7 +45,7 @@ __all__ += ["bdist_appimage", "bdist_deb", "bdist_rpm"] -__version__ = "7.2.6" +__version__ = "7.2.7" def setup(**attrs) -> setuptools.Distribution: # noqa: D103 diff --git a/doc/src/conf.py b/doc/src/conf.py index 77f18d648..79cafee6e 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -45,7 +45,7 @@ # General information about the project. project = "cx_Freeze" copyright = "2024, Marcelo Duarte" # noqa: A001 -__version__ = "7.2.6" +__version__ = "7.2.7" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/pyproject.toml b/pyproject.toml index 295c48aeb..7b37c7b6a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -122,7 +122,7 @@ target-version = ["py38"] [tool.bumpversion] commit = true -current_version = "7.2.6" +current_version = "7.2.7" message = "Bump version: {current_version} → {new_version} [ci skip]" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)(\\-(?P
[a-z]+)\\.(?P\\d+))?"
 serialize = [
diff --git a/tests/test_winmsvcr.py b/tests/test_winmsvcr.py
index adb46bba8..ef30e8a56 100644
--- a/tests/test_winmsvcr.py
+++ b/tests/test_winmsvcr.py
@@ -2,14 +2,12 @@
 
 from __future__ import annotations
 
-from pathlib import Path
 from typing import TYPE_CHECKING
 
 import pytest
 from generate_samples import create_package, run_command
 
 from cx_Freeze._compat import BUILD_EXE_DIR, EXE_SUFFIX, IS_MINGW, IS_WINDOWS
-from cx_Freeze.winmsvcr import FILES
 
 if TYPE_CHECKING:
     from pathlib import Path
@@ -45,6 +43,8 @@
 @pytest.mark.skipif(not IS_WINDOWS, reason="Windows tests")
 def test_files() -> None:
     """Test MSVC files."""
+    from cx_Freeze.winmsvcr import FILES
+
     assert EXPECTED == FILES