Skip to content

Commit

Permalink
restrict to one python version to give consistent version for comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
benclifford committed Nov 13, 2023
1 parent 6303800 commit 14fee0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
main-test-suite:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.11"]
runs-on: ubuntu-20.04
timeout-minutes: 60

Expand Down
1 change: 1 addition & 0 deletions parsl/executors/workqueue/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,7 @@ def _serialize_function(self, fn_path, parsl_fn, parsl_fn_args, parsl_fn_kwargs,
super_span=span)}

event("WQEX_SUBMIT_SERIALIZE_OPEN", span)
# fn_path shouldn't exist, because this is meant to be a clean directory...
with open(fn_path, "wb") as f_out:
event("WQEX_SUBMIT_SERIALIZE_PICKLEDUMP", span)
pickle.dump(function_info, f_out)
Expand Down

0 comments on commit 14fee0c

Please sign in to comment.