Skip to content

Commit

Permalink
Bump version to 7.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mkorpela committed Oct 14, 2022
1 parent d60b95a commit f3d8dc5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions overrides/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from overrides.enforce import EnforceOverrides
import sys

if sys.version_info < (3, 11):
from overrides.final import final
else:
Expand Down
4 changes: 2 additions & 2 deletions overrides/overrides.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
import inspect
import sys
from types import FunctionType
from typing import Any, Callable, List, Optional, Tuple, TypeVar, Union, overload
from typing import Callable, List, Optional, Tuple, TypeVar, Union, overload

__VERSION__ = "6.2.0"
__VERSION__ = "7.2.0"

from overrides.signature import ensure_signature_is_compatible

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name="overrides",
version="7.1.0",
version="7.2.0",
description=desc,
long_description=LONG_DESCRIPTION,
author=name,
Expand Down

0 comments on commit f3d8dc5

Please sign in to comment.