Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const { execSync } = require('child_process');

let preferred_python3;
try {
execSync('python3.10 --version', { stdio: 'ignore' });
preferred_python3 = "python3.10"; // in case you have multiple python3 versions installed
execSync('python3.14 --version', { stdio: 'ignore' });
preferred_python3 = "python3.14"; // in case you have multiple python3 versions installed
} catch (error) {
preferred_python3 = "python3";
}
Expand Down
4 changes: 2 additions & 2 deletions requirements-minimal.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pymysql==1.1.1
# Required by pymysql depending on setup: https://stackoverflow.com/questions/54477829/cryptography-is-required-for-sha256-password-or-caching-sha2-password
cryptography==46.0.6
# uwsgi==2.0.23 # No need for this if running via rocketserver
cryptography==50.0.1
# uwsgi==2.0.31 # No need for this if running via rocketserver
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pymysql==1.1.1
# Required by pymysql depending on setup: https://stackoverflow.com/questions/54477829/cryptography-is-required-for-sha256-password-or-caching-sha2-password
cryptography==46.0.6
uwsgi==2.0.23
cryptography==50.0.1
uwsgi==2.0.31
tqdm
requests
Loading