experimaestro 1.5.3__py3-none-any.whl → 1.6.0__py3-none-any.whl

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.

Potentially problematic release.


This version of experimaestro might be problematic. Click here for more details.

Files changed (62) hide show
  1. experimaestro/__init__.py +0 -1
  2. experimaestro/__main__.py +3 -423
  3. experimaestro/cli/__init__.py +312 -0
  4. experimaestro/{filter.py → cli/filter.py} +4 -4
  5. experimaestro/cli/jobs.py +261 -0
  6. experimaestro/click.py +0 -35
  7. experimaestro/connectors/ssh.py +26 -7
  8. experimaestro/core/objects.py +13 -6
  9. experimaestro/core/types.py +8 -3
  10. experimaestro/experiments/cli.py +97 -63
  11. experimaestro/experiments/configuration.py +7 -1
  12. experimaestro/launcherfinder/__init__.py +1 -1
  13. experimaestro/launcherfinder/base.py +2 -18
  14. experimaestro/launcherfinder/registry.py +22 -129
  15. experimaestro/launchers/direct.py +0 -47
  16. experimaestro/launchers/slurm/base.py +3 -1
  17. experimaestro/notifications.py +24 -8
  18. experimaestro/run.py +23 -5
  19. experimaestro/scheduler/base.py +26 -15
  20. experimaestro/scheduler/workspace.py +26 -8
  21. experimaestro/scriptbuilder.py +5 -1
  22. experimaestro/settings.py +43 -5
  23. experimaestro/tests/launchers/config_slurm/launchers.py +25 -0
  24. experimaestro/tests/test_findlauncher.py +1 -1
  25. experimaestro/tests/test_ssh.py +7 -0
  26. experimaestro/tests/test_tags.py +35 -0
  27. experimaestro/tokens.py +8 -8
  28. experimaestro/utils/resources.py +5 -1
  29. {experimaestro-1.5.3.dist-info → experimaestro-1.6.0.dist-info}/METADATA +4 -5
  30. {experimaestro-1.5.3.dist-info → experimaestro-1.6.0.dist-info}/RECORD +33 -59
  31. {experimaestro-1.5.3.dist-info → experimaestro-1.6.0.dist-info}/WHEEL +1 -1
  32. {experimaestro-1.5.3.dist-info → experimaestro-1.6.0.dist-info}/entry_points.txt +0 -4
  33. experimaestro/launchers/slurm/cli.py +0 -29
  34. experimaestro/launchers/slurm/configuration.py +0 -597
  35. experimaestro/scheduler/environment.py +0 -94
  36. experimaestro/server/data/016b4a6cdced82ab3aa1.ttf +0 -0
  37. experimaestro/server/data/0c35d18bf06992036b69.woff2 +0 -0
  38. experimaestro/server/data/219aa9140e099e6c72ed.woff2 +0 -0
  39. experimaestro/server/data/3a4004a46a653d4b2166.woff +0 -0
  40. experimaestro/server/data/3baa5b8f3469222b822d.woff +0 -0
  41. experimaestro/server/data/4d73cb90e394b34b7670.woff +0 -0
  42. experimaestro/server/data/4ef4218c522f1eb6b5b1.woff2 +0 -0
  43. experimaestro/server/data/50701fbb8177c2dde530.ttf +0 -0
  44. experimaestro/server/data/5d681e2edae8c60630db.woff +0 -0
  45. experimaestro/server/data/6f420cf17cc0d7676fad.woff2 +0 -0
  46. experimaestro/server/data/878f31251d960bd6266f.woff2 +0 -0
  47. experimaestro/server/data/b041b1fa4fe241b23445.woff2 +0 -0
  48. experimaestro/server/data/b6879d41b0852f01ed5b.woff2 +0 -0
  49. experimaestro/server/data/c380809fd3677d7d6903.woff2 +0 -0
  50. experimaestro/server/data/d75e3fd1eb12e9bd6655.ttf +0 -0
  51. experimaestro/server/data/f882956fd323fd322f31.woff +0 -0
  52. experimaestro/server/data/favicon.ico +0 -0
  53. experimaestro/server/data/index.css +0 -22844
  54. experimaestro/server/data/index.css.map +0 -1
  55. experimaestro/server/data/index.html +0 -27
  56. experimaestro/server/data/index.js +0 -100947
  57. experimaestro/server/data/index.js.map +0 -1
  58. experimaestro/server/data/login.html +0 -22
  59. experimaestro/server/data/manifest.json +0 -15
  60. experimaestro/tests/launchers/config_slurm/launchers.yaml +0 -134
  61. experimaestro/utils/yaml.py +0 -202
  62. {experimaestro-1.5.3.dist-info → experimaestro-1.6.0.dist-info}/LICENSE +0 -0
@@ -1,27 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta
6
- name="viewport"
7
- content="width=device-width, initial-scale=1, shrink-to-fit=no"
8
- />
9
- <meta name="theme-color" content="#000000" />
10
- <link rel="manifest" href="/manifest.json" />
11
- <link rel="shortcut icon" href="/favicon.ico" />
12
- <title>Experimaestro</title>
13
- </head>
14
- <body>
15
- <noscript> You need to enable JavaScript to run this app.</noscript>
16
- <div id="root"></div>
17
- <script>
18
- let process = {
19
- env: {
20
- NODE_ENV: "production",
21
- },
22
- };
23
- </script>
24
- <link rel="stylesheet" href="/index.css" />
25
- <script src="/index.js"></script>
26
- </body>
27
- </html>