matlab-proxy 0.20.0__tar.gz → 0.22.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 (190) hide show
  1. {matlab-proxy-0.20.0/matlab_proxy.egg-info → matlab-proxy-0.22.0}/PKG-INFO +1 -1
  2. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/package-lock.json +233 -245
  3. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/index.js +11 -7
  4. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/app.py +1 -1
  5. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/constants.py +1 -0
  6. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/settings.py +1 -1
  7. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0/matlab_proxy.egg-info}/PKG-INFO +1 -1
  8. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy.egg-info/SOURCES.txt +17 -0
  9. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy.egg-info/entry_points.txt +1 -0
  10. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy.egg-info/requires.txt +1 -0
  11. matlab-proxy-0.22.0/matlab_proxy.egg-info/top_level.txt +3 -0
  12. matlab-proxy-0.22.0/matlab_proxy_manager/__init__.py +6 -0
  13. matlab-proxy-0.22.0/matlab_proxy_manager/lib/api.py +295 -0
  14. matlab-proxy-0.22.0/matlab_proxy_manager/storage/__init__.py +1 -0
  15. matlab-proxy-0.22.0/matlab_proxy_manager/storage/file_repository.py +144 -0
  16. matlab-proxy-0.22.0/matlab_proxy_manager/storage/interface.py +62 -0
  17. matlab-proxy-0.22.0/matlab_proxy_manager/storage/server.py +144 -0
  18. matlab-proxy-0.22.0/matlab_proxy_manager/utils/__init__.py +1 -0
  19. matlab-proxy-0.22.0/matlab_proxy_manager/utils/auth.py +77 -0
  20. matlab-proxy-0.22.0/matlab_proxy_manager/utils/constants.py +5 -0
  21. matlab-proxy-0.22.0/matlab_proxy_manager/utils/environment_variables.py +46 -0
  22. matlab-proxy-0.22.0/matlab_proxy_manager/utils/helpers.py +286 -0
  23. matlab-proxy-0.22.0/matlab_proxy_manager/utils/logger.py +73 -0
  24. matlab-proxy-0.22.0/matlab_proxy_manager/web/__init__.py +1 -0
  25. matlab-proxy-0.22.0/matlab_proxy_manager/web/app.py +447 -0
  26. matlab-proxy-0.22.0/matlab_proxy_manager/web/monitor.py +45 -0
  27. matlab-proxy-0.22.0/matlab_proxy_manager/web/watcher.py +54 -0
  28. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/setup.py +4 -1
  29. matlab-proxy-0.22.0/tests/unit/__init__.py +1 -0
  30. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/test_app.py +1 -1
  31. matlab-proxy-0.20.0/matlab_proxy.egg-info/top_level.txt +0 -2
  32. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/LICENSE.md +0 -0
  33. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/MANIFEST.in +0 -0
  34. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/README.md +0 -0
  35. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/.eslintrc.json +0 -0
  36. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/.gitignore +0 -0
  37. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/README.md +0 -0
  38. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/package.json +0 -0
  39. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/public/favicon.ico +0 -0
  40. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/public/index.html +0 -0
  41. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/public/manifest.json +0 -0
  42. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/public/robots.txt +0 -0
  43. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/actionCreators/actionCreators.spec.js +0 -0
  44. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/actionCreators/index.js +0 -0
  45. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/actions/index.js +0 -0
  46. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/css/bootstrap.min.css +0 -0
  47. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/css/site7.min.css +0 -0
  48. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.eot +0 -0
  49. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.svg +0 -0
  50. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.ttf +0 -0
  51. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.woff +0 -0
  52. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/fonts/glyphicons-halflings-regular.woff2 +0 -0
  53. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/fonts/mathworks-eps.svg +0 -0
  54. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/fonts/mathworks-eps.ttf +0 -0
  55. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/fonts/mathworks-eps.woff +0 -0
  56. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/fonts/mathworks-pictograms.svg +0 -0
  57. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/fonts/mathworks-pictograms.ttf +0 -0
  58. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/fonts/mathworks-pictograms.woff +0 -0
  59. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/fonts/mathworks.svg +0 -0
  60. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/fonts/mathworks.ttf +0 -0
  61. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/fonts/mathworks.woff +0 -0
  62. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/images/bug_reports/workaround.gif +0 -0
  63. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/images/responsive/global/ico-header-account-hover.svg +0 -0
  64. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/images/responsive/global/ico-header-account.svg +0 -0
  65. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/images/responsive/global/ico-header-contact-hover.svg +0 -0
  66. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/images/responsive/global/ico-header-contact.svg +0 -0
  67. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/3p/images/responsive/global/ico-sprite.png +0 -0
  68. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/App.css +0 -0
  69. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/App.spec.js +0 -0
  70. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/IdleBufferTimeouts.spec.js +0 -0
  71. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/App/MATLAB-env-blur.png +0 -0
  72. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Confirmation/Confirmation.spec.js +0 -0
  73. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Confirmation/index.js +0 -0
  74. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Controls/Controls.css +0 -0
  75. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Controls/Controls.spec.js +0 -0
  76. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Controls/feedback.svg +0 -0
  77. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Controls/help.svg +0 -0
  78. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Controls/index.js +0 -0
  79. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Controls/restart.svg +0 -0
  80. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Controls/sign-out.svg +0 -0
  81. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Controls/start.svg +0 -0
  82. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Controls/stop.svg +0 -0
  83. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Controls/terminate.svg +0 -0
  84. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/EntitlementSelector/EntitlementSelector.spec.js +0 -0
  85. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/EntitlementSelector/index.js +0 -0
  86. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Error/Error.css +0 -0
  87. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Error/Error.spec.js +0 -0
  88. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Error/index.js +0 -0
  89. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Help/Help.css +0 -0
  90. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Help/Help.spec.js +0 -0
  91. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Help/index.js +0 -0
  92. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Information/Information.css +0 -0
  93. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Information/Information.spec.js +0 -0
  94. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Information/index.js +0 -0
  95. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/LicensingGatherer/ExistingLicense.css +0 -0
  96. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/LicensingGatherer/ExistingLicense.js +0 -0
  97. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/LicensingGatherer/LicenseGatherer.spec.js +0 -0
  98. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/LicensingGatherer/LicensingGatherer.css +0 -0
  99. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/LicensingGatherer/MHLM.js +0 -0
  100. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/LicensingGatherer/NLM.js +0 -0
  101. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/LicensingGatherer/index.js +0 -0
  102. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/MatlabJsd/MatlabJsd.css +0 -0
  103. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/MatlabJsd/MatlabJsd.spec.js +0 -0
  104. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/MatlabJsd/index.js +0 -0
  105. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Overlay/Overlay.css +0 -0
  106. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Overlay/Overlay.spec.js +0 -0
  107. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/Overlay/index.js +0 -0
  108. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/OverlayTrigger/OverlayTrigger.css +0 -0
  109. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/OverlayTrigger/OverlayTrigger.spec.js +0 -0
  110. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/OverlayTrigger/ResizeOverlayTrigger.spec.js +0 -0
  111. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/OverlayTrigger/arrow.svg +0 -0
  112. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/OverlayTrigger/gripper.svg +0 -0
  113. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/OverlayTrigger/index.js +0 -0
  114. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/OverlayTrigger/trigger-error.svg +0 -0
  115. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/OverlayTrigger/trigger-ok.svg +0 -0
  116. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/ShutdownWarning/ShutdownWarning.css +0 -0
  117. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/components/ShutdownWarning/index.js +0 -0
  118. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/constants.js +0 -0
  119. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/index.css +0 -0
  120. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/index.js +0 -0
  121. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/jest.config.json +0 -0
  122. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/logo.svg +0 -0
  123. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/reducers/index.js +0 -0
  124. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/reducers/reducers.spec.js +0 -0
  125. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/selectors/index.js +0 -0
  126. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/selectors/selectors.spec.js +0 -0
  127. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/serviceWorker.js +0 -0
  128. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/setupTests.js +0 -0
  129. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/test/utils/react-test.js +0 -0
  130. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/test/utils/responses.js +0 -0
  131. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/gui/src/test/utils/state.js +0 -0
  132. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/__init__.py +0 -0
  133. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/app_state.py +0 -0
  134. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/default_configuration.py +0 -0
  135. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/devel.py +0 -0
  136. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/icons/matlab.svg +0 -0
  137. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/matlab/evaluateUserMatlabCode.m +0 -0
  138. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/matlab/startup.m +0 -0
  139. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/__init__.py +0 -0
  140. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/event_loop.py +0 -0
  141. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/list_servers.py +0 -0
  142. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/mw.py +0 -0
  143. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/mwi/__init__.py +0 -0
  144. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/mwi/custom_http_headers.py +0 -0
  145. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/mwi/download.py +0 -0
  146. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/mwi/embedded_connector/__init__.py +0 -0
  147. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/mwi/embedded_connector/helpers.py +0 -0
  148. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/mwi/embedded_connector/request.py +0 -0
  149. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/mwi/environment_variables.py +0 -0
  150. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/mwi/exceptions.py +0 -0
  151. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/mwi/logger.py +0 -0
  152. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/mwi/token_auth.py +0 -0
  153. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/mwi/validators.py +0 -0
  154. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/system.py +0 -0
  155. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy/util/windows.py +0 -0
  156. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy.egg-info/dependency_links.txt +0 -0
  157. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/matlab_proxy.egg-info/not-zip-safe +0 -0
  158. {matlab-proxy-0.20.0/tests/unit → matlab-proxy-0.22.0/matlab_proxy_manager/lib}/__init__.py +0 -0
  159. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/setup.cfg +0 -0
  160. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/integration/__init__.py +0 -0
  161. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/integration/integration_tests_with_license/__init__.py +0 -0
  162. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/integration/integration_tests_with_license/conftest.py +0 -0
  163. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/integration/integration_tests_with_license/test_http_end_points.py +0 -0
  164. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/integration/integration_tests_without_license/__init__.py +0 -0
  165. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/integration/integration_tests_without_license/conftest.py +0 -0
  166. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/integration/integration_tests_without_license/test_matlab_is_down_if_unlicensed.py +0 -0
  167. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/integration/utils/__init__.py +0 -0
  168. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/integration/utils/integration_tests_utils.py +0 -0
  169. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/integration/utils/licensing.py +0 -0
  170. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/conftest.py +0 -0
  171. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/test_app_state.py +0 -0
  172. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/test_constants.py +0 -0
  173. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/test_ddux.py +0 -0
  174. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/test_devel.py +0 -0
  175. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/test_non_dev_mode.py +0 -0
  176. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/test_settings.py +0 -0
  177. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/util/__init__.py +0 -0
  178. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/util/mwi/__init__.py +0 -0
  179. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/util/mwi/embedded_connector/__init__.py +0 -0
  180. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/util/mwi/embedded_connector/test_helpers.py +0 -0
  181. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/util/mwi/embedded_connector/test_request.py +0 -0
  182. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/util/mwi/test_custom_http_headers.py +0 -0
  183. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/util/mwi/test_download.py +0 -0
  184. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/util/mwi/test_logger.py +0 -0
  185. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/util/mwi/test_token_auth.py +0 -0
  186. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/util/mwi/test_validators.py +0 -0
  187. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/util/test_mw.py +0 -0
  188. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/unit/util/test_util.py +0 -0
  189. {matlab-proxy-0.20.0 → matlab-proxy-0.22.0}/tests/utils/__init__.py +0 -0
  190. {matlab-proxy-0.20.0 → matlab-proxy-0.22.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.20.0
3
+ Version: 0.22.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.