Skip to content

Commit

Permalink
Merge branch 'main' into ci-integration
Browse files Browse the repository at this point in the history
pulling new changes into branch
  • Loading branch information
ERDC\RDITLSCW committed Jan 7, 2025
2 parents 29f906d + df9a5c0 commit fda724a
Show file tree
Hide file tree
Showing 19 changed files with 2,741 additions and 1,170 deletions.
2 changes: 1 addition & 1 deletion examples/pyUIT GUI Tools Demo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
" )\n",
" \n",
"class HpcJobScriptEditor(param.Parameterized):\n",
" uit_client = param.ClassSelector(Client)\n",
" uit_client = param.ClassSelector(class_=Client)\n",
" file_type = param.ObjectSelector(default='sh', objects=['py', 'sh'])\n",
" file_contents = param.String(default='echo Hello World!')\n",
" ready = param.Boolean(default=False, precedence=-1)\n",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

install_requires = [
'flask', 'PyYAML', 'requests', 'dodcerts',
'aiohttp', 'flask', 'PyYAML', 'requests', 'dodcerts',
]

extras_require = dict()
Expand Down
3 changes: 2 additions & 1 deletion uit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from .uit import Client # noqa: F401
from .uit import Client, shutdown_auth_server # noqa: F401
from .async_client import AsyncClient # noqa: F401
from .pbs_script import PbsScript # noqa: F401
from .job import PbsJob, PbsArrayJob # noqa: F401
from .exceptions import UITError, MaxRetriesError # noqa: F401
Loading

0 comments on commit fda724a

Please sign in to comment.