Skip to content

Commit

Permalink
Bump version: 7.2.6 → 7.2.7 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelotduarte committed Nov 29, 2024
1 parent 90d9fac commit c3b530b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cx_Freeze/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\-(?P<pre>[a-z]+)\\.(?P<build>\\d+))?"
serialize = [
Expand Down
4 changes: 2 additions & 2 deletions tests/test_winmsvcr.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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


Expand Down

0 comments on commit c3b530b

Please sign in to comment.