matlab-proxy 0.25.0__tar.gz → 0.26.0__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.

Potentially problematic release.


This version of matlab-proxy might be problematic. Click here for more details.

Files changed (191) hide show
  1. {matlab_proxy-0.25.0/matlab_proxy.egg-info → matlab_proxy-0.26.0}/PKG-INFO +4 -1
  2. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/README.md +1 -0
  3. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/package-lock.json +237 -153
  4. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/package.json +1 -1
  5. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/app.py +66 -12
  6. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/constants.py +1 -0
  7. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/settings.py +22 -1
  8. matlab_proxy-0.26.0/matlab_proxy/util/cookie_jar.py +72 -0
  9. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/mwi/environment_variables.py +10 -0
  10. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0/matlab_proxy.egg-info}/PKG-INFO +4 -1
  11. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy.egg-info/SOURCES.txt +3 -0
  12. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy.egg-info/requires.txt +2 -0
  13. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/lib/api.py +156 -114
  14. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/storage/server.py +5 -2
  15. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/utils/constants.py +2 -1
  16. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/utils/environment_variables.py +6 -1
  17. matlab_proxy-0.26.0/matlab_proxy_manager/utils/exceptions.py +45 -0
  18. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/utils/helpers.py +2 -2
  19. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/utils/logger.py +4 -1
  20. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/web/app.py +71 -19
  21. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/setup.py +5 -2
  22. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/test_app.py +116 -17
  23. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/test_settings.py +26 -6
  24. matlab_proxy-0.26.0/tests/unit/util/test_cookie_jar.py +252 -0
  25. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/LICENSE.md +0 -0
  26. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/MANIFEST.in +0 -0
  27. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/.eslintrc.json +0 -0
  28. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/.gitignore +0 -0
  29. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/README.md +0 -0
  30. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/eslint.config.js +0 -0
  31. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/index.css +0 -0
  32. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/index.html +0 -0
  33. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/public/favicon.ico +0 -0
  34. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/public/manifest.json +0 -0
  35. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/public/robots.txt +0 -0
  36. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/actionCreators/actionCreators.spec.js +0 -0
  37. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/actionCreators/index.js +0 -0
  38. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/actions/index.js +0 -0
  39. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/css/bootstrap.min.css +0 -0
  40. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/css/site7.min.css +0 -0
  41. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.eot +0 -0
  42. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.svg +0 -0
  43. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.ttf +0 -0
  44. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.woff +0 -0
  45. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.woff2 +0 -0
  46. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/fonts/mathworks-eps.svg +0 -0
  47. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/fonts/mathworks-eps.ttf +0 -0
  48. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/fonts/mathworks-eps.woff +0 -0
  49. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/fonts/mathworks-pictograms.svg +0 -0
  50. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/fonts/mathworks-pictograms.ttf +0 -0
  51. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/fonts/mathworks-pictograms.woff +0 -0
  52. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/fonts/mathworks.svg +0 -0
  53. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/fonts/mathworks.ttf +0 -0
  54. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/fonts/mathworks.woff +0 -0
  55. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/images/bug_reports/workaround.gif +0 -0
  56. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/images/responsive/global/ico-header-account-hover.svg +0 -0
  57. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/images/responsive/global/ico-header-account.svg +0 -0
  58. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/images/responsive/global/ico-header-contact-hover.svg +0 -0
  59. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/images/responsive/global/ico-header-contact.svg +0 -0
  60. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/3p/images/responsive/global/ico-sprite.png +0 -0
  61. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/App.css +0 -0
  62. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/App.spec.jsx +0 -0
  63. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/IdleBufferTimeouts.spec.jsx +0 -0
  64. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/MATLAB-env-blur.png +0 -0
  65. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/App/index.jsx +0 -0
  66. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Confirmation/Confirmation.spec.jsx +0 -0
  67. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Confirmation/index.jsx +0 -0
  68. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Controls/Controls.css +0 -0
  69. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Controls/Controls.spec.jsx +0 -0
  70. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Controls/feedback.svg +0 -0
  71. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Controls/help.svg +0 -0
  72. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Controls/index.jsx +0 -0
  73. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Controls/restart.svg +0 -0
  74. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Controls/sign-out.svg +0 -0
  75. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Controls/start.svg +0 -0
  76. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Controls/stop.svg +0 -0
  77. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Controls/terminate.svg +0 -0
  78. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/EntitlementSelector/EntitlementSelector.spec.jsx +0 -0
  79. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/EntitlementSelector/index.jsx +0 -0
  80. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Error/Error.css +0 -0
  81. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Error/Error.spec.jsx +0 -0
  82. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Error/index.jsx +0 -0
  83. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Help/Help.css +0 -0
  84. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Help/Help.spec.jsx +0 -0
  85. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Help/index.jsx +0 -0
  86. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Information/Information.css +0 -0
  87. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Information/Information.spec.jsx +0 -0
  88. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Information/index.jsx +0 -0
  89. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/LicensingGatherer/ExistingLicense.css +0 -0
  90. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/LicensingGatherer/ExistingLicense.jsx +0 -0
  91. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/LicensingGatherer/LicenseGatherer.spec.jsx +0 -0
  92. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/LicensingGatherer/LicensingGatherer.css +0 -0
  93. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/LicensingGatherer/MHLM.jsx +0 -0
  94. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/LicensingGatherer/NLM.jsx +0 -0
  95. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/LicensingGatherer/index.jsx +0 -0
  96. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/MatlabJsd/MatlabJsd.css +0 -0
  97. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/MatlabJsd/MatlabJsd.spec.jsx +0 -0
  98. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/MatlabJsd/index.jsx +0 -0
  99. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Overlay/Overlay.css +0 -0
  100. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Overlay/Overlay.spec.jsx +0 -0
  101. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/Overlay/index.jsx +0 -0
  102. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/OverlayTrigger/OverlayTrigger.css +0 -0
  103. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/OverlayTrigger/OverlayTrigger.spec.jsx +0 -0
  104. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/OverlayTrigger/ResizeOverlayTrigger.spec.jsx +0 -0
  105. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/OverlayTrigger/arrow.svg +0 -0
  106. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/OverlayTrigger/gripper.svg +0 -0
  107. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/OverlayTrigger/index.jsx +0 -0
  108. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/OverlayTrigger/trigger-error.svg +0 -0
  109. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/OverlayTrigger/trigger-ok.svg +0 -0
  110. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/ShutdownWarning/ShutdownWarning.css +0 -0
  111. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/components/ShutdownWarning/index.jsx +0 -0
  112. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/constants.js +0 -0
  113. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/main.jsx +0 -0
  114. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/reducers/index.js +0 -0
  115. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/reducers/reducers.spec.js +0 -0
  116. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/selectors/index.js +0 -0
  117. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/selectors/selectors.spec.js +0 -0
  118. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/setupTests.js +0 -0
  119. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/test/utils/react-test.jsx +0 -0
  120. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/test/utils/responses.js +0 -0
  121. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/src/test/utils/state.js +0 -0
  122. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/gui/vite.config.js +0 -0
  123. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/__init__.py +0 -0
  124. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/app_state.py +0 -0
  125. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/default_configuration.py +0 -0
  126. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/devel.py +0 -0
  127. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/icons/matlab.svg +0 -0
  128. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/matlab/evaluateUserMatlabCode.m +0 -0
  129. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/matlab/startup.m +0 -0
  130. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/__init__.py +0 -0
  131. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/event_loop.py +0 -0
  132. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/list_servers.py +0 -0
  133. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/mw.py +0 -0
  134. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/mwi/__init__.py +0 -0
  135. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/mwi/custom_http_headers.py +0 -0
  136. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/mwi/download.py +0 -0
  137. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/mwi/embedded_connector/__init__.py +0 -0
  138. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/mwi/embedded_connector/helpers.py +0 -0
  139. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/mwi/embedded_connector/request.py +0 -0
  140. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/mwi/exceptions.py +0 -0
  141. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/mwi/logger.py +0 -0
  142. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/mwi/token_auth.py +0 -0
  143. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/mwi/validators.py +0 -0
  144. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/system.py +0 -0
  145. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy/util/windows.py +0 -0
  146. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy.egg-info/dependency_links.txt +0 -0
  147. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy.egg-info/entry_points.txt +0 -0
  148. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy.egg-info/not-zip-safe +0 -0
  149. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy.egg-info/top_level.txt +0 -0
  150. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/__init__.py +0 -0
  151. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/lib/__init__.py +0 -0
  152. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/storage/__init__.py +0 -0
  153. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/storage/file_repository.py +0 -0
  154. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/storage/interface.py +0 -0
  155. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/utils/__init__.py +0 -0
  156. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/utils/auth.py +0 -0
  157. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/web/__init__.py +0 -0
  158. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/web/monitor.py +0 -0
  159. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/matlab_proxy_manager/web/watcher.py +0 -0
  160. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/setup.cfg +0 -0
  161. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/integration/__init__.py +0 -0
  162. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/integration/integration_tests_with_license/__init__.py +0 -0
  163. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/integration/integration_tests_with_license/conftest.py +0 -0
  164. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/integration/integration_tests_with_license/test_http_end_points.py +0 -0
  165. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/integration/integration_tests_without_license/__init__.py +0 -0
  166. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/integration/integration_tests_without_license/conftest.py +0 -0
  167. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/integration/integration_tests_without_license/test_matlab_is_down_if_unlicensed.py +0 -0
  168. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/integration/utils/__init__.py +0 -0
  169. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/integration/utils/integration_tests_utils.py +0 -0
  170. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/integration/utils/licensing.py +0 -0
  171. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/__init__.py +0 -0
  172. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/conftest.py +0 -0
  173. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/test_app_state.py +0 -0
  174. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/test_constants.py +0 -0
  175. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/test_ddux.py +0 -0
  176. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/test_devel.py +0 -0
  177. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/test_non_dev_mode.py +0 -0
  178. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/util/__init__.py +0 -0
  179. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/util/mwi/__init__.py +0 -0
  180. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/util/mwi/embedded_connector/__init__.py +0 -0
  181. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/util/mwi/embedded_connector/test_helpers.py +0 -0
  182. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/util/mwi/embedded_connector/test_request.py +0 -0
  183. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/util/mwi/test_custom_http_headers.py +0 -0
  184. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/util/mwi/test_download.py +0 -0
  185. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/util/mwi/test_logger.py +0 -0
  186. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/util/mwi/test_token_auth.py +0 -0
  187. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/util/mwi/test_validators.py +0 -0
  188. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/util/test_mw.py +0 -0
  189. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/unit/util/test_util.py +0 -0
  190. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/utils/__init__.py +0 -0
  191. {matlab_proxy-0.25.0 → matlab_proxy-0.26.0}/tests/utils/logging_util.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: matlab-proxy
3
- Version: 0.25.0
3
+ Version: 0.26.0
4
4
  Summary: Python® package enables you to launch MATLAB® and access it from a web browser.
5
5
  Home-page: https://github.com/mathworks/matlab-proxy/
6
6
  Author: The MathWorks, Inc.
@@ -27,6 +27,7 @@ Requires-Dist: requests
27
27
  Provides-Extra: dev
28
28
  Requires-Dist: aiohttp-devtools; extra == "dev"
29
29
  Requires-Dist: black; extra == "dev"
30
+ Requires-Dist: ruff; extra == "dev"
30
31
  Requires-Dist: pytest; extra == "dev"
31
32
  Requires-Dist: pytest-env; extra == "dev"
32
33
  Requires-Dist: pytest-cov; extra == "dev"
@@ -37,6 +38,7 @@ Requires-Dist: pytest-timeout; extra == "dev"
37
38
  Requires-Dist: psutil; extra == "dev"
38
39
  Requires-Dist: urllib3; extra == "dev"
39
40
  Requires-Dist: pytest-playwright; extra == "dev"
41
+ Requires-Dist: pytest-asyncio==0.24.0; extra == "dev"
40
42
 
41
43
  # MATLAB Proxy
42
44
  [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/mathworks/matlab-proxy/run-tests.yml?branch=main&logo=github)](https://github.com/mathworks/matlab-proxy/actions)   [![PyPI badge](https://img.shields.io/pypi/v/matlab-proxy.svg?logo=pypi)](https://pypi.python.org/pypi/matlab-proxy)   [![codecov](https://codecov.io/gh/mathworks/matlab-proxy/branch/main/graph/badge.svg?token=ZW3SESKCSS)](https://codecov.io/gh/mathworks/matlab-proxy)   [![Downloads](https://static.pepy.tech/personalized-badge/matlab-proxy?period=month&units=international_system&left_color=grey&right_color=blue&left_text=PyPI%20downloads/month)](https://pepy.tech/project/matlab-proxy)
@@ -178,6 +180,7 @@ The following options are available in the status panel (some options are only a
178
180
  | Stop MATLAB | Stop your MATLAB session. Use this option if you want to free up RAM and CPU resources. Available if MATLAB is running or starting.|
179
181
  | Sign Out | Sign out of MATLAB session. Use this to stop MATLAB and sign in with an alternative account. Available if using online licensing.|
180
182
  | Unset License Server Address | Unset network license manager server address. Use this to stop MATLAB and enter new licensing information. Available if using network license manager.|
183
+ | Shut Down | Stop your MATLAB session and the `matlab-proxy` server.|
181
184
  | Feedback | Provide feedback. Opens a new tab to create an issue on GitHub.|
182
185
  | Help | Open a help pop-up for a detailed description of the options.|
183
186
 
@@ -138,6 +138,7 @@ The following options are available in the status panel (some options are only a
138
138
  | Stop MATLAB | Stop your MATLAB session. Use this option if you want to free up RAM and CPU resources. Available if MATLAB is running or starting.|
139
139
  | Sign Out | Sign out of MATLAB session. Use this to stop MATLAB and sign in with an alternative account. Available if using online licensing.|
140
140
  | Unset License Server Address | Unset network license manager server address. Use this to stop MATLAB and enter new licensing information. Available if using network license manager.|
141
+ | Shut Down | Stop your MATLAB session and the `matlab-proxy` server.|
141
142
  | Feedback | Provide feedback. Opens a new tab to create an issue on GitHub.|
142
143
  | Help | Open a help pop-up for a detailed description of the options.|
143
144