Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allowing PPO to handle async sampling #34

Merged
merged 9 commits into from
Sep 8, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixing wheels parsing
  • Loading branch information
Edilmo committed Sep 4, 2020
commit b38f9791472a822b4e2bc4b0ea4d1df4ae08ed8f
2 changes: 1 addition & 1 deletion ci/azure_pipelines/templates/info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ steps:
echo "Please check the changes, change the azure pipelines acordingly and update the sha256"
exit 1
fi
EXPECTED_HASH_CI_FOLDER='aaebf29e0547b0c4a4079e18d9608bbddbb8771d88c70ec3570146a3d2671571'
EXPECTED_HASH_CI_FOLDER='5f5eb0c22adf951eb117e09a60e9e94e336a51a353e9aa776340b5118fc987b4'
CURRENT_HASH_CI_FOLDER=$(find ./ci -path "./ci/azure_pipelines" -prune -o -path "./**/.DS_Store" -prune -o -type f -print0 | sort -z | xargs -0 shasum -a 256 | shasum -a 256 | awk '{print $1}')
if [[ $EXPECTED_HASH_CI_FOLDER != $CURRENT_HASH_CI_FOLDER ]]; then
echo "The original CI folder of the project has changed"
Expand Down
2 changes: 1 addition & 1 deletion ci/travis/test-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function retry {

if [[ "$platform" == "linux" ]]; then
# Install miniconda.
PY_WHEEL_VERSIONS=("36" "37" "38")
PY_WHEEL_VERSIONS=("cp36" "cp37" "cp38")
PY_MMS=("3.6.9"
"3.7.6"
"3.8.2")
Expand Down