Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump python from 3.12-slim to 3.13-slim #406

Merged
merged 5 commits into from
Feb 23, 2025
Merged
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Nelson Dane

# Build from python slim image
FROM python:3.12-slim
FROM python:3.13-slim

# Set ENV variables
ENV TZ=America/New_York
Expand Down
7 changes: 3 additions & 4 deletions autoRSA.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@
import sys
import traceback

# Check Python version (minimum 3.10, maximum 3.12)
# Check Python version (minimum 3.10, maximum 3.13)
print("Python version:", sys.version)
if sys.version_info < (3, 10) or sys.version_info >= (3, 13):
print("Error: Python version must be between 3.10 and 3.12")
sys.exit(1)
if sys.version_info < (3, 10) or sys.version_info >= (3, 14):
print("Error: Python version must be minimum 3.10 or maximum 3.13")
print()

try:
Expand Down