Debug WIP: Update imports

This commit is contained in:
Allan Jeremy 2022-06-13 15:46:36 +03:00
parent 1b67063244
commit 2541280ff6
2 changed files with 8 additions and 5 deletions

View file

@ -40,10 +40,6 @@ jobs:
- name: Build Luau
run: make config=release luau luau-analyze
- name: Setup python
run: |
sudo apt-get install python3
- uses: actions/setup-python@v4
with:
python-version: "3.9"

View file

@ -1,5 +1,12 @@
import os, sys, time, numpy
from scipy import mean, stats
try:
import scipy
from scipy import mean, stats
except ModuleNotFoundError:
print("Warning: scipy package is not installed, confidence values will not be available")
stats = None
duration_list = []