quapp-hpc 0.0.1.dev1__tar.gz → 0.0.1.dev2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. {quapp_hpc-0.0.1.dev1/quapp_hpc.egg-info → quapp_hpc-0.0.1.dev2}/PKG-INFO +2 -2
  2. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/pyproject.toml +2 -2
  3. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2/quapp_hpc.egg-info}/PKG-INFO +2 -2
  4. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc.egg-info/requires.txt +1 -1
  5. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/LICENSE +0 -0
  6. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/README.md +0 -0
  7. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/__init__.py +0 -0
  8. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/component/__init__.py +0 -0
  9. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/component/backend/__init__.py +0 -0
  10. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/component/backend/hpc_invocation.py +0 -0
  11. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/component/backend/slurm_job_fetching.py +0 -0
  12. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/factory/__init__.py +0 -0
  13. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/factory/hpc_device_factory.py +0 -0
  14. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/factory/hpc_handler_factory.py +0 -0
  15. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/factory/hpc_provider_factory.py +0 -0
  16. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/handler/__init__.py +0 -0
  17. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/handler/invocation_handler.py +0 -0
  18. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/handler/job_fetching_handler.py +0 -0
  19. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/model/__init__.py +0 -0
  20. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/model/device/__init__.py +0 -0
  21. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/model/device/slurm_device.py +0 -0
  22. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/model/provider/__init__.py +0 -0
  23. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc/model/provider/slurm_provider.py +0 -0
  24. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc.egg-info/SOURCES.txt +0 -0
  25. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc.egg-info/dependency_links.txt +0 -0
  26. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/quapp_hpc.egg-info/top_level.txt +0 -0
  27. {quapp_hpc-0.0.1.dev1 → quapp_hpc-0.0.1.dev2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: quapp-hpc
3
- Version: 0.0.1.dev1
3
+ Version: 0.0.1.dev2
4
4
  Summary: Quapp HPC library — Slurm integration for Quapp Platform
5
5
  Author-email: "CITYNOW Co. Ltd." <corp@citynow.vn>
6
6
  License: The MIT License (MIT)
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3
19
19
  Requires-Python: <3.13,>=3.10
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: quapp-common==0.0.11.dev9
22
+ Requires-Dist: quapp-common==0.0.12.dev3
23
23
  Requires-Dist: requests>=2.31.0
24
24
  Requires-Dist: boto3>=1.28.0
25
25
  Provides-Extra: dev
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "quapp-hpc"
7
- version = "0.0.1.dev1"
7
+ version = "0.0.1.dev2"
8
8
  description = "Quapp HPC library — Slurm integration for Quapp Platform"
9
9
  readme = "README.md"
10
10
  authors = [{ name = "CITYNOW Co. Ltd.", email = "corp@citynow.vn" }]
@@ -16,7 +16,7 @@ classifiers = [
16
16
  ]
17
17
  keywords = ["quapp", "quapp-hpc", "slurm", "hpc"]
18
18
  dependencies = [
19
- "quapp-common==0.0.11.dev9",
19
+ "quapp-common==0.0.12.dev3",
20
20
  "requests>=2.31.0",
21
21
  "boto3>=1.28.0",
22
22
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: quapp-hpc
3
- Version: 0.0.1.dev1
3
+ Version: 0.0.1.dev2
4
4
  Summary: Quapp HPC library — Slurm integration for Quapp Platform
5
5
  Author-email: "CITYNOW Co. Ltd." <corp@citynow.vn>
6
6
  License: The MIT License (MIT)
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3
19
19
  Requires-Python: <3.13,>=3.10
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: quapp-common==0.0.11.dev9
22
+ Requires-Dist: quapp-common==0.0.12.dev3
23
23
  Requires-Dist: requests>=2.31.0
24
24
  Requires-Dist: boto3>=1.28.0
25
25
  Provides-Extra: dev
@@ -1,4 +1,4 @@
1
- quapp-common==0.0.11.dev9
1
+ quapp-common==0.0.12.dev3
2
2
  requests>=2.31.0
3
3
  boto3>=1.28.0
4
4
 
File without changes
File without changes
File without changes