Skip to content

Commit

Permalink
Support 3.3 and 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
urda committed Nov 5, 2016
1 parent 7caae28 commit 8135642
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions scripts/version_manager.py
Expand Up @@ -26,7 +26,6 @@
dirname,
join,
)
from typing import List


class FileVersionInfo(object):
Expand Down Expand Up @@ -139,7 +138,7 @@ def __init__(
self.version_result = version_result


def get_versions(version_objects: List[FileVersionInfo]) -> FileVersionResult:
def get_versions(version_objects: list) -> FileVersionResult:
"""
Search specific project files and extract versions to check.
Expand Down Expand Up @@ -167,7 +166,7 @@ def get_versions(version_objects: List[FileVersionInfo]) -> FileVersionResult:
)


def set_versions(version_objects: List[FileVersionInfo], new_version: str):
def set_versions(version_objects: list, new_version: str):
"""
Update all known version objects with a new version string.
Expand Down

0 comments on commit 8135642

Please sign in to comment.