@scrypted/server 0.7.30 → 0.7.32

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 @scrypted/server might be problematic. Click here for more details.

package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrypted/server",
3
- "version": "0.7.30",
3
+ "version": "0.7.32",
4
4
  "description": "",
5
5
  "dependencies": {
6
6
  "@mapbox/node-pre-gyp": "^1.0.10",
@@ -374,12 +374,13 @@ class PluginRemote:
374
374
  # to fail because pip only allows filtering on machine, even if running a different architeture.
375
375
  # this will cause prebuilt wheel installation to fail.
376
376
  if platform.machine() == 'aarch64' and platform.architecture()[0] == '32bit':
377
- print('Python machine vs architecture mismatch detected.')
377
+ print('=============================================')
378
+ print('Python machine vs architecture mismatch detected. Plugin installation may fail.')
378
379
  print('If Scrypted is running in docker, the docker version may be 32bit while the host kernel is 64bit.')
379
380
  print('This may be resolved by reinstalling a 64bit docker.')
380
381
  print('The docker architecture can be checked with the command: "file $(which docker)"')
381
382
  print('The host architecture can be checked with: "uname -m"')
382
- raise Exception('Python machine/architecture mismatch')
383
+ print('=============================================')
383
384
 
384
385
  python_version = 'python%s' % str(
385
386
  sys.version_info[0])+"."+str(sys.version_info[1])