more-compute 0.4.0__tar.gz → 0.4.2__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 (111) hide show
  1. {more_compute-0.4.0 → more_compute-0.4.2}/LICENSE +1 -1
  2. {more_compute-0.4.0/more_compute.egg-info → more_compute-0.4.2}/PKG-INFO +7 -7
  3. {more_compute-0.4.0 → more_compute-0.4.2}/README.md +4 -2
  4. {more_compute-0.4.0 → more_compute-0.4.2}/kernel_run.py +13 -1
  5. {more_compute-0.4.0 → more_compute-0.4.2/more_compute.egg-info}/PKG-INFO +7 -7
  6. more_compute-0.4.2/morecompute/__version__.py +1 -0
  7. {more_compute-0.4.0 → more_compute-0.4.2}/pyproject.toml +2 -4
  8. {more_compute-0.4.0 → more_compute-0.4.2}/setup.py +1 -3
  9. more_compute-0.4.0/morecompute/__version__.py +0 -1
  10. {more_compute-0.4.0 → more_compute-0.4.2}/MANIFEST.in +0 -0
  11. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/.gitignore +0 -0
  12. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/README.md +0 -0
  13. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/__init__.py +0 -0
  14. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/app/favicon.ico +0 -0
  15. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/app/globals.css +0 -0
  16. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/app/layout.tsx +0 -0
  17. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/app/page.tsx +0 -0
  18. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/Notebook.tsx +0 -0
  19. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/cell/AddCellButton.tsx +0 -0
  20. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/cell/CellButton.tsx +0 -0
  21. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/cell/MonacoCell.tsx +0 -0
  22. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/layout/ConnectionBanner.tsx +0 -0
  23. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/layout/Sidebar.tsx +0 -0
  24. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/modals/ConfirmModal.tsx +0 -0
  25. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/modals/ErrorModal.tsx +0 -0
  26. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/modals/SuccessModal.tsx +0 -0
  27. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/output/CellOutput.tsx +0 -0
  28. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/output/ErrorDisplay.tsx +0 -0
  29. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/output/MarkdownRenderer.tsx +0 -0
  30. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/popups/ComputePopup.tsx +0 -0
  31. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/popups/FilterPopup.tsx +0 -0
  32. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/popups/FolderPopup.tsx +0 -0
  33. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/popups/MetricsPopup.tsx +0 -0
  34. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/popups/PackagesPopup.tsx +0 -0
  35. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/components/popups/SettingsPopup.tsx +0 -0
  36. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/contexts/PodWebSocketContext.tsx +0 -0
  37. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/eslint.config.mjs +0 -0
  38. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/lib/api.ts +0 -0
  39. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/lib/monaco-themes.ts +0 -0
  40. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/lib/settings.ts +0 -0
  41. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/lib/themes.json +0 -0
  42. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/lib/websocket-native.ts +0 -0
  43. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/lib/websocket.ts +0 -0
  44. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/next-env.d.ts +0 -0
  45. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/next.config.mjs +0 -0
  46. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/next.config.ts +0 -0
  47. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/package-lock.json +0 -0
  48. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/package.json +0 -0
  49. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/postcss.config.mjs +0 -0
  50. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/add.svg +0 -0
  51. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/check.svg +0 -0
  52. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/copy.svg +0 -0
  53. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/folder.svg +0 -0
  54. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/metric.svg +0 -0
  55. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/packages.svg +0 -0
  56. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/play.svg +0 -0
  57. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/python.svg +0 -0
  58. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/setting.svg +0 -0
  59. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/stop.svg +0 -0
  60. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/trash.svg +0 -0
  61. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/up-down.svg +0 -0
  62. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/assets/icons/x.svg +0 -0
  63. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/file.svg +0 -0
  64. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/fonts/Fira.ttf +0 -0
  65. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/fonts/Tiempos.woff2 +0 -0
  66. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/fonts/VeraMono.ttf +0 -0
  67. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/globe.svg +0 -0
  68. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/next.svg +0 -0
  69. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/vercel.svg +0 -0
  70. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/public/window.svg +0 -0
  71. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/styling_README.md +0 -0
  72. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/tailwind.config.ts +0 -0
  73. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/tsconfig.json +0 -0
  74. {more_compute-0.4.0 → more_compute-0.4.2}/frontend/types/notebook.ts +0 -0
  75. {more_compute-0.4.0 → more_compute-0.4.2}/more_compute.egg-info/SOURCES.txt +0 -0
  76. {more_compute-0.4.0 → more_compute-0.4.2}/more_compute.egg-info/dependency_links.txt +0 -0
  77. {more_compute-0.4.0 → more_compute-0.4.2}/more_compute.egg-info/entry_points.txt +0 -0
  78. {more_compute-0.4.0 → more_compute-0.4.2}/more_compute.egg-info/requires.txt +0 -0
  79. {more_compute-0.4.0 → more_compute-0.4.2}/more_compute.egg-info/top_level.txt +0 -0
  80. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/__init__.py +0 -0
  81. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/cli.py +0 -0
  82. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/execution/__init__.py +0 -0
  83. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/execution/__main__.py +0 -0
  84. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/execution/executor.py +0 -0
  85. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/execution/worker.py +0 -0
  86. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/models/__init__.py +0 -0
  87. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/models/api_models.py +0 -0
  88. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/notebook.py +0 -0
  89. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/process_worker.py +0 -0
  90. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/server.py +0 -0
  91. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/services/data_manager.py +0 -0
  92. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/services/lsp_service.py +0 -0
  93. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/services/pod_manager.py +0 -0
  94. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/services/pod_monitor.py +0 -0
  95. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/services/prime_intellect.py +0 -0
  96. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/static/styles.css +0 -0
  97. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/__init__.py +0 -0
  98. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/cache_util.py +0 -0
  99. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/cell_magics.py +0 -0
  100. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/config_util.py +0 -0
  101. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/error_utils.py +0 -0
  102. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/line_magics.py +0 -0
  103. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/notebook_converter.py +0 -0
  104. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/notebook_util.py +0 -0
  105. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/py_percent_parser.py +0 -0
  106. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/python_environment_util.py +0 -0
  107. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/shell_utils.py +0 -0
  108. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/special_commands.py +0 -0
  109. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/system_environment_util.py +0 -0
  110. {more_compute-0.4.0 → more_compute-0.4.2}/morecompute/utils/zmq_util.py +0 -0
  111. {more_compute-0.4.0 → more_compute-0.4.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 MoreCompute Team
3
+ Copyright (c) 2025 Daniel Ung
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: more-compute
3
- Version: 0.4.0
3
+ Version: 0.4.2
4
4
  Summary: An interactive notebook environment for local and GPU computing
5
5
  Home-page: https://github.com/DannyMang/MORECOMPUTE
6
6
  Author: MoreCompute Team
7
- Author-email: MoreCompute Team <hello@morecompute.dev>
7
+ Author-email: Daniel Ung <daniel.haidang.ung@gmail.com>
8
8
  License: MIT
9
9
  Project-URL: Homepage, https://github.com/DannyMang/MORECOMPUTE
10
10
  Project-URL: Repository, https://github.com/DannyMang/MORECOMPUTE
@@ -15,12 +15,10 @@ Classifier: Intended Audience :: Developers
15
15
  Classifier: License :: OSI Approved :: MIT License
16
16
  Classifier: Operating System :: OS Independent
17
17
  Classifier: Programming Language :: Python :: 3
18
- Classifier: Programming Language :: Python :: 3.8
19
- Classifier: Programming Language :: Python :: 3.9
20
18
  Classifier: Programming Language :: Python :: 3.10
21
19
  Classifier: Programming Language :: Python :: 3.11
22
20
  Classifier: Programming Language :: Python :: 3.12
23
- Requires-Python: >=3.8
21
+ Requires-Python: >=3.10
24
22
  Description-Content-Type: text/markdown
25
23
  License-File: LICENSE
26
24
  Requires-Dist: fastapi>=0.104.0
@@ -41,7 +39,7 @@ Dynamic: requires-python
41
39
  # more-compute
42
40
 
43
41
  [![PyPI version](https://badge.fury.io/py/more-compute.svg)](https://pypi.org/project/more-compute/)
44
- [![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
42
+ [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
45
43
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
46
44
 
47
45
  An interactive Python notebook environment, similar to Marimo and Google Colab, that runs locally.
@@ -52,7 +50,9 @@ https://github.com/user-attachments/assets/8c7ec716-dade-4de2-ad37-71d328129c97
52
50
 
53
51
  ## Installation
54
52
 
55
- **Prerequisites:** [Node.js](https://nodejs.org/) >= 20.10.0 required for web interface
53
+ **Prerequisites:**
54
+ - [Node.js](https://nodejs.org/) >= 20.10.0 required for web interface
55
+ - Python >= 3.10 (uv installs this automatically, pip users need to install manually)
56
56
 
57
57
  ### Using uv (Recommended)
58
58
 
@@ -1,7 +1,7 @@
1
1
  # more-compute
2
2
 
3
3
  [![PyPI version](https://badge.fury.io/py/more-compute.svg)](https://pypi.org/project/more-compute/)
4
- [![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
4
+ [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
6
6
 
7
7
  An interactive Python notebook environment, similar to Marimo and Google Colab, that runs locally.
@@ -12,7 +12,9 @@ https://github.com/user-attachments/assets/8c7ec716-dade-4de2-ad37-71d328129c97
12
12
 
13
13
  ## Installation
14
14
 
15
- **Prerequisites:** [Node.js](https://nodejs.org/) >= 20.10.0 required for web interface
15
+ **Prerequisites:**
16
+ - [Node.js](https://nodejs.org/) >= 20.10.0 required for web interface
17
+ - Python >= 3.10 (uv installs this automatically, pip users need to install manually)
16
18
 
17
19
  ### Using uv (Recommended)
18
20
 
@@ -1,8 +1,20 @@
1
1
  #!/usr/bin/env python3
2
2
 
3
+ import sys
4
+ if sys.version_info < (3, 10):
5
+ print(f"Error: more-compute requires Python 3.10 or higher.")
6
+ print(f"You are using Python {sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}")
7
+ print()
8
+ print("To fix this:")
9
+ print(" 1. Uninstall: uv tool uninstall more-compute")
10
+ print(" 2. Reinstall with specific version: uv tool install more-compute==0.4.1")
11
+ print(" (uv will automatically download Python 3.10+ for you)")
12
+ print()
13
+ print("Or upgrade your system Python: https://www.python.org/downloads/")
14
+ sys.exit(1)
15
+
3
16
  import argparse
4
17
  import subprocess
5
- import sys
6
18
  import os
7
19
  import time
8
20
  import signal
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: more-compute
3
- Version: 0.4.0
3
+ Version: 0.4.2
4
4
  Summary: An interactive notebook environment for local and GPU computing
5
5
  Home-page: https://github.com/DannyMang/MORECOMPUTE
6
6
  Author: MoreCompute Team
7
- Author-email: MoreCompute Team <hello@morecompute.dev>
7
+ Author-email: Daniel Ung <daniel.haidang.ung@gmail.com>
8
8
  License: MIT
9
9
  Project-URL: Homepage, https://github.com/DannyMang/MORECOMPUTE
10
10
  Project-URL: Repository, https://github.com/DannyMang/MORECOMPUTE
@@ -15,12 +15,10 @@ Classifier: Intended Audience :: Developers
15
15
  Classifier: License :: OSI Approved :: MIT License
16
16
  Classifier: Operating System :: OS Independent
17
17
  Classifier: Programming Language :: Python :: 3
18
- Classifier: Programming Language :: Python :: 3.8
19
- Classifier: Programming Language :: Python :: 3.9
20
18
  Classifier: Programming Language :: Python :: 3.10
21
19
  Classifier: Programming Language :: Python :: 3.11
22
20
  Classifier: Programming Language :: Python :: 3.12
23
- Requires-Python: >=3.8
21
+ Requires-Python: >=3.10
24
22
  Description-Content-Type: text/markdown
25
23
  License-File: LICENSE
26
24
  Requires-Dist: fastapi>=0.104.0
@@ -41,7 +39,7 @@ Dynamic: requires-python
41
39
  # more-compute
42
40
 
43
41
  [![PyPI version](https://badge.fury.io/py/more-compute.svg)](https://pypi.org/project/more-compute/)
44
- [![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
42
+ [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
45
43
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
46
44
 
47
45
  An interactive Python notebook environment, similar to Marimo and Google Colab, that runs locally.
@@ -52,7 +50,9 @@ https://github.com/user-attachments/assets/8c7ec716-dade-4de2-ad37-71d328129c97
52
50
 
53
51
  ## Installation
54
52
 
55
- **Prerequisites:** [Node.js](https://nodejs.org/) >= 20.10.0 required for web interface
53
+ **Prerequisites:**
54
+ - [Node.js](https://nodejs.org/) >= 20.10.0 required for web interface
55
+ - Python >= 3.10 (uv installs this automatically, pip users need to install manually)
56
56
 
57
57
  ### Using uv (Recommended)
58
58
 
@@ -0,0 +1 @@
1
+ __version__ = "0.4.2"
@@ -7,10 +7,10 @@ name = "more-compute"
7
7
  dynamic = ["version"]
8
8
  description = "An interactive notebook environment for local and GPU computing"
9
9
  readme = "README.md"
10
- requires-python = ">=3.8"
10
+ requires-python = ">=3.10"
11
11
  license = {text = "MIT"}
12
12
  authors = [
13
- {name = "MoreCompute Team", email = "hello@morecompute.dev"}
13
+ {name = "Daniel Ung", email = "daniel.haidang.ung@gmail.com"}
14
14
  ]
15
15
  keywords = ["jupyter", "notebook", "gpu", "computing", "interactive"]
16
16
  classifiers = [
@@ -19,8 +19,6 @@ classifiers = [
19
19
  "License :: OSI Approved :: MIT License",
20
20
  "Operating System :: OS Independent",
21
21
  "Programming Language :: Python :: 3",
22
- "Programming Language :: Python :: 3.8",
23
- "Programming Language :: Python :: 3.9",
24
22
  "Programming Language :: Python :: 3.10",
25
23
  "Programming Language :: Python :: 3.11",
26
24
  "Programming Language :: Python :: 3.12",
@@ -28,13 +28,11 @@ setup(
28
28
  "License :: OSI Approved :: MIT License",
29
29
  "Operating System :: OS Independent",
30
30
  "Programming Language :: Python :: 3",
31
- "Programming Language :: Python :: 3.8",
32
- "Programming Language :: Python :: 3.9",
33
31
  "Programming Language :: Python :: 3.10",
34
32
  "Programming Language :: Python :: 3.11",
35
33
  "Programming Language :: Python :: 3.12",
36
34
  ],
37
- python_requires=">=3.8",
35
+ python_requires=">=3.10",
38
36
  install_requires=[
39
37
  "fastapi>=0.104.0",
40
38
  "uvicorn[standard]>=0.24.0",
@@ -1 +0,0 @@
1
- __version__ = "0.4.0"
File without changes
File without changes