Skip to content

Commit

Permalink
postbeta
Browse files Browse the repository at this point in the history
  • Loading branch information
koush committed Mar 17, 2024
1 parent 7fcc616 commit 862db81
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion server/bin/packaged-python.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const { PortablePython } = require('py')
const { once } = require('events');

module.exports = {
version: '3.11',
version: '3.10',
}

async function pipInstall(python, pkg) {
Expand Down
4 changes: 2 additions & 2 deletions server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scrypted/server",
"version": "0.94.31",
"version": "0.94.32",
"description": "",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11",
Expand Down
4 changes: 2 additions & 2 deletions server/src/plugin/runtime/python-worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import fs from "fs";
import os from "os";
import path from 'path';
import { PortablePython } from 'py';
import { Readable, Writable, PassThrough } from 'stream';
import { PassThrough, Readable, Writable } from 'stream';
import { installScryptedServerRequirements, version as packagedPythonVersion } from '../../../bin/packaged-python';
import { RpcMessage, RpcPeer } from "../../rpc";
import { createRpcDuplexSerializer } from '../../rpc-serializer';
Expand Down Expand Up @@ -103,7 +103,7 @@ export class PythonRuntimeWorker extends ChildProcessWorker {
stdio: ['pipe', 'pipe', 'pipe', 'pipe', 'pipe'],
env: Object.assign({
// rev this if the base python version or server characteristics change.
SCRYPTED_PYTHON_VERSION: '20240308.1',
SCRYPTED_PYTHON_VERSION: '20240317',
PYTHONUNBUFFERED: '1',
PYTHONPATH,
}, gstEnv, process.env, env),
Expand Down

0 comments on commit 862db81

Please sign in to comment.