Skip to content

Commit

Permalink
Adds check for python versions below 3.9 and bails out if true
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Kasaboski committed Feb 4, 2025
1 parent 5728ccd commit 2d2056d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/flare/bin/cron_job_ingest_events.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import sys


if sys.version_info < (3, 9):
sys.exit("Error: This application requires Python 3.9 or higher.")


import json
import os
import sys

from datetime import date
from datetime import datetime
Expand Down

0 comments on commit 2d2056d

Please sign in to comment.