Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Learn more
Permalink
Browse files

Fix and test against Python 3.8 (#1363)

* Run CI testing against Python 3.8

* Bring in python 3.8 changes from corresponding source file in ipyparallel

* undo whitespace change from re-import of ipyparallel source
  • Loading branch information
benclifford authored and yadudoc committed Dec 5, 2019
1 parent 53a5353 commit de8db4d570c365ad8f637a6c7f07189f2404ac19
Showing with 3 additions and 0 deletions.
  1. +1 −0 .travis.yml
  2. +2 −0 parsl/executors/serialize/codeutil.py
@@ -3,6 +3,7 @@ python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"

env:
global:
@@ -29,6 +29,8 @@ def reduce_code(co):
co.co_lnotab, co.co_freevars, co.co_cellvars]
if sys.version_info[0] >= 3:
args.insert(1, co.co_kwonlyargcount)
if sys.version_info > (3, 8):
args.insert(1, co.co_posonlyargcount)
return code_ctor, tuple(args)


0 comments on commit de8db4d

Please sign in to comment.
You can’t perform that action at this time.