Skip to content

Commit

Permalink
Bumped version to v1.2.19 + imports reordering (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
liorgorb authored Apr 2, 2022
1 parent 3e5d0c1 commit 2e1ceb9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gprofiler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Copyright (c) Granulate. All rights reserved.
# Licensed under the AGPL3 License. See LICENSE.md in the project root for license information.
#
__version__ = "1.2.18"
__version__ = "1.2.19"
3 changes: 1 addition & 2 deletions gprofiler/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
from typing import Any, Iterable, Optional, Type, cast

import configargparse

from gprofiler.metadata.enrichment import EnrichmentOptions
from granulate_utils.linux.ns import is_running_in_init_pid
from granulate_utils.linux.process import is_process_running
from psutil import NoSuchProcess, Process
Expand All @@ -32,6 +30,7 @@
from gprofiler.log import RemoteLogsHandler, initial_root_logger_setup
from gprofiler.merge import concatenate_profiles, merge_profiles
from gprofiler.metadata.application_identifiers import set_enrichment_options
from gprofiler.metadata.enrichment import EnrichmentOptions
from gprofiler.metadata.metadata_collector import get_current_metadata, get_static_metadata
from gprofiler.metadata.metadata_type import Metadata
from gprofiler.metadata.system_metadata import get_hostname, get_run_mode, get_static_system_info
Expand Down
2 changes: 1 addition & 1 deletion gprofiler/metadata/application_identifiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
from abc import ABCMeta, abstractmethod
from typing import List, Optional, TextIO, Tuple, Union

from gprofiler.metadata.enrichment import EnrichmentOptions
from granulate_utils.linux.ns import resolve_host_path, resolve_proc_root_links
from psutil import NoSuchProcess, Process

from gprofiler.exceptions import CalledProcessError
from gprofiler.log import get_logger_adapter
from gprofiler.metadata.enrichment import EnrichmentOptions
from gprofiler.profilers.java import jattach_path
from gprofiler.utils import run_process

Expand Down
3 changes: 1 addition & 2 deletions gprofiler/metadata/enrichment.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from typing import List

from dataclasses import dataclass
from typing import List


@dataclass
Expand Down

0 comments on commit 2e1ceb9

Please sign in to comment.