Skip to content
Permalink
Browse files

switch to using typeguard as it is more maintained

  • Loading branch information...
benclifford committed Apr 14, 2019
1 parent 5b7b02d commit 695d2763449026f9779a61a2293960ea531d89bb
Showing with 3 additions and 5 deletions.
  1. +2 −4 parsl/config.py
  2. +1 −1 requirements.txt
@@ -1,5 +1,5 @@
import enforce
import logging
import typeguard

from typing import List, Optional

@@ -11,8 +11,6 @@

logger = logging.getLogger(__name__)

enforce.config({'mode': 'covariant'})


class Config(RepresentationMixin):
"""
@@ -54,7 +52,7 @@ class Config(RepresentationMixin):
information used for reporting to our funding agencies. Default is False.
"""

@enforce.runtime_validation
@typeguard.typechecked
def __init__(self,
executors: Optional[List[ParslExecutor]] = None,
app_cache: bool = True,
@@ -1,5 +1,5 @@
enforce
pyzmq>=17.1.2
typeguard
ipyparallel
globus-sdk
dill

0 comments on commit 695d276

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