-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into submission_template
# Conflicts: # pysqa/utils/basic.py # pysqa/wrapper/abstract.py # pysqa/wrapper/flux.py # pysqa/wrapper/gent.py # pysqa/wrapper/lsf.py # pysqa/wrapper/moab.py # pysqa/wrapper/sge.py # pysqa/wrapper/slurm.py # pysqa/wrapper/torque.py
- Loading branch information
Showing
3 changed files
with
0 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
from typing import Optional | ||
|
||
import pandas | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
|
||
import getpass | ||
import json | ||
import os | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
# coding: utf-8 | ||
# Copyright (c) Jan Janssen | ||
|
||
import os | ||
from typing import List, Optional, Tuple, Union | ||
|
||
|
@@ -11,14 +8,6 @@ | |
from pysqa.utils.config import read_config | ||
from pysqa.utils.execute import execute_command | ||
|
||
__author__ = "Jan Janssen" | ||
__copyright__ = "Copyright 2019, Jan Janssen" | ||
__version__ = "0.0.3" | ||
__maintainer__ = "Jan Janssen" | ||
__email__ = "[email protected]" | ||
__status__ = "production" | ||
__date__ = "Feb 9, 2019" | ||
|
||
|
||
class QueueAdapter(object): | ||
""" | ||
|