remove matplotlib

This commit is contained in:
Zen 2021-07-08 05:56:20 +03:00
parent fd209a2251
commit 0bd3fa0265
4 changed files with 0 additions and 10 deletions

View file

@ -15,7 +15,6 @@ requires-dist = [
"opencv-python", "opencv-python",
"psutil", "psutil",
"scipy", "scipy",
"matplotlib",
"vapoursynth", "vapoursynth",
] ]

View file

@ -17,7 +17,6 @@ requires-dist = [
"opencv-python", "opencv-python",
"psutil", "psutil",
"scipy", "scipy",
"matplotlib",
"vapoursynth", "vapoursynth",
] ]

View file

@ -21,13 +21,6 @@ from av1an_pyo3 import (
) )
from scipy import interpolate from scipy import interpolate
try:
import matplotlib
from matplotlib import pyplot as plt
except ImportError:
matplotlib = None
plt = None
class TargetQuality: class TargetQuality:
def __init__(self, project): def __init__(self, project):

View file

@ -16,7 +16,6 @@ from av1an_pyo3 import (
read_weighted_vmaf, read_weighted_vmaf,
validate_vmaf, validate_vmaf,
) )
from matplotlib import pyplot as plt
from av1an.chunk import Chunk from av1an.chunk import Chunk
from av1an.manager.Pipes import process_pipe from av1an.manager.Pipes import process_pipe