Draft
Conversation
This commit introduces BUILD files to all subdirectories within the
smart_control/reinforcement_learning module. These BUILD files define
pytype_strict_library targets for all Python files, py_strict_binary
targets for executable scripts, and py_strict_test targets for test files.
Dependencies for each target have been determined by analyzing their imports.
Additionally, this commit updates one existing BUILD file
(smart_control/utils/BUILD) to replace py_library targets with
pytype_strict_library, ensuring consistency in the use of strict Python
rules.
Summary of changes:
- Updated smart_control/utils/BUILD:
- Replaced py_library with pytype_strict_library for 'constants' and 'conversion_utils'.
- Removed unused load statement for py_library.
- Added smart_control/reinforcement_learning/agents/BUILD
- Added smart_control/reinforcement_learning/agents/networks/BUILD
- Added smart_control/reinforcement_learning/observers/BUILD
- Added smart_control/reinforcement_learning/policies/BUILD
- Added smart_control/reinforcement_learning/replay_buffer/BUILD
- Added smart_control/reinforcement_learning/scripts/BUILD
- Added smart_control/reinforcement_learning/utils/BUILD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add BUILD files to reinforcement_learning module and update py_library.
This commit introduces BUILD files to all subdirectories within the smart_control/reinforcement_learning module. These BUILD files define pytype_strict_library targets for all Python files, py_strict_binary targets for executable scripts, and py_strict_test targets for test files. Dependencies for each target have been determined by analyzing their imports.
Additionally, this commit updates one existing BUILD file (smart_control/utils/BUILD) to replace py_library targets with pytype_strict_library, ensuring consistency in the use of strict Python rules.
Summary of changes:
Fixes google#79