Skip to content

Commit

Permalink
Adds check for python versions below 3.9 and bails out if true (#81)
Browse files Browse the repository at this point in the history
Co-authored-by: Mark Kasaboski <[email protected]>
  • Loading branch information
markkasaboski and Mark Kasaboski authored Feb 6, 2025
1 parent 4222186 commit c2132f7
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 c2132f7

Please sign in to comment.