Fix hidden PDDL grader dependencies#16
Open
parkavenue9639 wants to merge 3 commits into
Open
Conversation
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.
Summary
unified-planningandup-pyperplandependencies in the top-level grader requirements.Problem
T136 is marked as a closed task with
external_dependency: none, but its embedded grader previously depended on a runtime PyPI installation:unified-planningup-pyperplanThese packages were missing from the top-level
requirements.txt. If the dynamic installation failed because of network, permissions, or environment restrictions, the checker returned all-zero automated scores. This conflated grader setup failures with agent performance.The supplied
solve.pyalso uses these packages inside the agent runtime. All PawBench Dockerfiles install the top-level requirements, so declaring them there keeps the runtime and host grader environments aligned.Changes
unified-planning==1.3.0up-pyperplan==1.1.0requirements.txt.task01.pddlfixture.Validation