-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into file_staging
- Loading branch information
Showing
54 changed files
with
266 additions
and
204 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "pip" | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
versioning-strategy: auto | ||
allow: | ||
- dependency-name: "filelock" | ||
- dependency-name: "psutil" | ||
- dependency-name: "pystache" | ||
- dependency-name: "typeguard" | ||
- dependency-name: "packaging" | ||
|
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
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
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 |
---|---|---|
|
@@ -20,3 +20,4 @@ build/ | |
.packages/ | ||
docs/.web-build | ||
web-build/ | ||
.packages/ |
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
include requirements.txt |
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
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -6,4 +6,5 @@ | |
pytest >= 6.2.0 | ||
requests >= 2.25.1 | ||
pytest-cov | ||
pytest-timeout | ||
pytest-timeout | ||
filelock >= 3.4, < 3.18 |
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,4 @@ | ||
filelock~=3.4 | ||
psutil~=5.9 | ||
psutil >=5.9, <=6.1.1 | ||
pystache>=0.6.0 | ||
typeguard~=2.12 | ||
typing-compat | ||
typeguard>=3.0.1 | ||
packaging >= 24.0, <= 24.2 |
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 |
---|---|---|
|
@@ -12,8 +12,7 @@ | |
name='psij-python', | ||
version=VERSION, | ||
|
||
description='''This is an implementation of the PSI/J (Portable Submission Interface for Jobs) | ||
specification.''', | ||
description='''This is an implementation of the PSI/J (Portable Submission Interface for Jobs) specification.''', | ||
|
||
author='The ExaWorks Team', | ||
author_email='[email protected]', | ||
|
@@ -43,5 +42,5 @@ | |
}, | ||
|
||
install_requires=install_requires, | ||
python_requires='>=3.7' | ||
python_requires='>=3.8' | ||
) |
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,8 +1,7 @@ | ||
from distutils.version import StrictVersion | ||
|
||
from packaging.version import Version | ||
from psij.descriptor import Descriptor | ||
|
||
__PSI_J_LAUNCHERS__ = [ | ||
Descriptor(name='aprun', version=StrictVersion('0.0.1'), | ||
Descriptor(name='aprun', version=Version('0.0.1'), | ||
cls='psij.launchers.aprun.AprunLauncher'), | ||
] |
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,7 +1,6 @@ | ||
from distutils.version import StrictVersion | ||
|
||
from packaging.version import Version | ||
from psij.descriptor import Descriptor | ||
|
||
|
||
__PSI_J_EXECUTORS__ = [Descriptor(name="cobalt", nice_name='Cobalt', version=StrictVersion("0.2.0"), | ||
__PSI_J_EXECUTORS__ = [Descriptor(name="cobalt", nice_name='Cobalt', version=Version("0.2.0"), | ||
cls='psij.executors.batch.cobalt.CobaltJobExecutor')] |
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,16 +1,16 @@ | ||
from distutils.version import StrictVersion | ||
from packaging.version import Version | ||
from psij.descriptor import Descriptor | ||
|
||
__PSI_J_EXECUTORS__ = [ | ||
Descriptor(name='local', nice_name='Local', version=StrictVersion('0.2.0'), | ||
Descriptor(name='local', nice_name='Local', version=Version('0.2.0'), | ||
cls='psij.executors.local.LocalJobExecutor') | ||
] | ||
|
||
__PSI_J_LAUNCHERS__ = [ | ||
Descriptor(name='single', version=StrictVersion('0.2.0'), | ||
Descriptor(name='single', version=Version('0.2.0'), | ||
cls='psij.launchers.single.SingleLauncher'), | ||
Descriptor(name='multiple', version=StrictVersion('0.2.0'), | ||
Descriptor(name='multiple', version=Version('0.2.0'), | ||
cls='psij.launchers.multiple.MultipleLauncher'), | ||
Descriptor(name='mpirun', version=StrictVersion('0.2.0'), | ||
Descriptor(name='mpirun', version=Version('0.2.0'), | ||
cls='psij.launchers.mpirun.MPILauncher'), | ||
] |
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,7 +1,6 @@ | ||
from distutils.version import StrictVersion | ||
|
||
from packaging.version import Version | ||
from psij.descriptor import Descriptor | ||
|
||
|
||
__PSI_J_EXECUTORS__ = [Descriptor(name='flux', nice_name='Flux', version=StrictVersion('0.0.1'), | ||
__PSI_J_EXECUTORS__ = [Descriptor(name='flux', nice_name='Flux', version=Version('0.0.1'), | ||
cls='psij.executors.flux.FluxJobExecutor')] |
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,8 +1,7 @@ | ||
from distutils.version import StrictVersion | ||
|
||
from packaging.version import Version | ||
from psij.descriptor import Descriptor | ||
|
||
__PSI_J_LAUNCHERS__ = [ | ||
Descriptor(name='jrun', version=StrictVersion('0.0.1'), | ||
Descriptor(name='jrun', version=Version('0.0.1'), | ||
cls='psij.launchers.jsrun.JsrunLauncher'), | ||
] |
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,7 +1,6 @@ | ||
from distutils.version import StrictVersion | ||
|
||
from packaging.version import Version | ||
from psij.descriptor import Descriptor | ||
|
||
|
||
__PSI_J_EXECUTORS__ = [Descriptor(name='lsf', nice_name='LSF', version=StrictVersion('0.2.0'), | ||
__PSI_J_EXECUTORS__ = [Descriptor(name='lsf', nice_name='LSF', version=Version('0.2.0'), | ||
cls='psij.executors.batch.lsf.LsfJobExecutor')] |
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,11 +1,10 @@ | ||
from distutils.version import StrictVersion | ||
|
||
from packaging.version import Version | ||
from psij.descriptor import Descriptor | ||
|
||
|
||
__PSI_J_EXECUTORS__ = [Descriptor(name='pbs', nice_name='PBS Pro', aliases=['pbspro'], | ||
version=StrictVersion('0.2.0'), | ||
version=Version('0.2.0'), | ||
cls='psij.executors.batch.pbs.PBSJobExecutor'), | ||
Descriptor(name='pbs_classic', nice_name='PBS Classic', aliases=['torque'], | ||
version=StrictVersion('0.2.0'), | ||
version=Version('0.2.0'), | ||
cls='psij.executors.batch.pbs_classic.PBSClassicJobExecutor')] |
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,8 +1,7 @@ | ||
from distutils.version import StrictVersion | ||
|
||
from packaging.version import Version | ||
from psij.descriptor import Descriptor | ||
|
||
|
||
__PSI_J_EXECUTORS__ = [Descriptor(name='rp', nice_name='Radical Pilot', | ||
version=StrictVersion('0.0.1'), | ||
version=Version('0.0.1'), | ||
cls='psij.executors.rp.RPJobExecutor')] |
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,7 +1,6 @@ | ||
from distutils.version import StrictVersion | ||
|
||
from packaging.version import Version | ||
from psij.descriptor import Descriptor | ||
|
||
|
||
__PSI_J_EXECUTORS__ = [Descriptor(name='slurm', nice_name='Slurm', version=StrictVersion('0.2.0'), | ||
__PSI_J_EXECUTORS__ = [Descriptor(name='slurm', nice_name='Slurm', version=Version('0.2.0'), | ||
cls='psij.executors.batch.slurm.SlurmJobExecutor')] |
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,8 +1,7 @@ | ||
from distutils.version import StrictVersion | ||
|
||
from packaging.version import Version | ||
from psij.descriptor import Descriptor | ||
|
||
__PSI_J_LAUNCHERS__ = [ | ||
Descriptor(name='srun', version=StrictVersion('0.0.1'), | ||
Descriptor(name='srun', version=Version('0.0.1'), | ||
cls='psij.launchers.srun.SrunLauncher'), | ||
] |
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
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
Oops, something went wrong.