Skip to content

Commit

Permalink
add pants.util.enums dep to BUILD files
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmicexplorer committed Nov 25, 2019
1 parent 4b9e9c8 commit 2441636
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/python/pants/backend/jvm/tasks/BUILD
Expand Up @@ -550,6 +550,7 @@ python_library(
'src/python/pants/java:util',
'src/python/pants/process',
'src/python/pants/task',
'src/python/pants/util:enums',
],
tags = {"partially_type_checked"},
)
Expand Down
1 change: 1 addition & 0 deletions src/python/pants/backend/jvm/tasks/jvm_compile/BUILD
Expand Up @@ -60,6 +60,7 @@ python_library(
'src/python/pants/util:collections',
'src/python/pants/util:contextutil',
'src/python/pants/util:dirutil',
'src/python/pants/util:enums',
'src/python/pants/util:fileutil',
'src/python/pants/util:memo',
],
Expand Down
1 change: 1 addition & 0 deletions src/python/pants/backend/native/subsystems/BUILD
Expand Up @@ -13,6 +13,7 @@ python_library(
'src/python/pants/engine:selectors',
'src/python/pants/subsystem',
'src/python/pants/util:collections',
'src/python/pants/util:enums',
'src/python/pants/util:memo',
'src/python/pants/util:meta',
],
Expand Down
1 change: 1 addition & 0 deletions src/python/pants/backend/native/subsystems/binaries/BUILD
Expand Up @@ -10,6 +10,7 @@ python_library(
'src/python/pants/engine:rules',
'src/python/pants/engine:platform',
'src/python/pants/util:dirutil',
'src/python/pants/util:enums',
'src/python/pants/util:memo',
],
tags = {"partially_type_checked"},
Expand Down
1 change: 1 addition & 0 deletions src/python/pants/backend/native/targets/BUILD
Expand Up @@ -11,6 +11,7 @@ python_library(
'src/python/pants/base:payload_field',
'src/python/pants/build_graph',
'src/python/pants/engine:platform',
'src/python/pants/util:enums',
'src/python/pants/util:memo',
],
tags = {"partially_type_checked"},
Expand Down
1 change: 1 addition & 0 deletions src/python/pants/backend/native/tasks/BUILD
Expand Up @@ -16,6 +16,7 @@ python_library(
'src/python/pants/task',
'src/python/pants/util:collections',
'src/python/pants/util:contextutil',
'src/python/pants/util:enums',
'src/python/pants/util:memo',
'src/python/pants/util:objects',
'src/python/pants/util:strutil',
Expand Down
1 change: 1 addition & 0 deletions src/python/pants/backend/project_info/rules/BUILD
Expand Up @@ -10,6 +10,7 @@ python_library(
'src/python/pants/rules/core',
'src/python/pants/subsystem',
'src/python/pants/util:collections',
'src/python/pants/util:enums',
'src/python/pants/util:memo',
],
)
Expand Down
1 change: 1 addition & 0 deletions tests/python/pants_test/backend/python/tasks/native/BUILD
Expand Up @@ -42,6 +42,7 @@ python_tests(
'src/python/pants/backend/python/tasks',
'src/python/pants/util:contextutil',
'src/python/pants/testutil:int-test',
'src/python/pants/util:enums',
'tests/python/pants_test/backend/python/tasks/util',
'tests/python/pants_test/engine:scheduler_test_base',
'testprojects/src/python:python_distribution_directory',
Expand Down
1 change: 1 addition & 0 deletions tests/python/pants_test/backend/python/tasks/util/BUILD
Expand Up @@ -3,6 +3,7 @@ python_library(
'src/python/pants/backend/native',
'src/python/pants/backend/python/tasks',
'src/python/pants/util:collections',
'src/python/pants/util:enums',
'src/python/pants/util:meta',
'tests/python/pants_test/backend/python/tasks:python_task_test_base',
'tests/python/pants_test/engine:scheduler_test_base',
Expand Down
1 change: 0 additions & 1 deletion tests/python/pants_test/util/test_meta.py
@@ -1,7 +1,6 @@
# Copyright 2015 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).


import unittest
from abc import ABC, abstractmethod
from dataclasses import FrozenInstanceError, dataclass
Expand Down

0 comments on commit 2441636

Please sign in to comment.