Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
updated script to allow 3.5 and up
Browse files Browse the repository at this point in the history
  • Loading branch information
rsds143 committed Jul 8, 2020
1 parent cd19dc5 commit 9d6db11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/sperf
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
import sys
import os
import platform
if platform.python_version() < '3.7':
raise Exception("sperf requires at least Python 3.7, consider a packaged release")
if platform.python_version() < '3.5':
raise Exception("sperf requires at least Python 3.5, consider a packaged release")
sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..'))
from pysper.commands import sperf

Expand Down

0 comments on commit 9d6db11

Please sign in to comment.