Skip to content

Commit

Permalink
Switch from stgpytools to jetpytools
Browse files Browse the repository at this point in the history
  • Loading branch information
emotion3459 committed Feb 14, 2025
1 parent 03a721e commit b5ac6cc
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
VapourSynth>=68
jetpytools>=1.2.3
vsjetpack>=0.1.1
vsengine>=0.2.0
PyQt6>=6.6.1
Expand Down
2 changes: 1 addition & 1 deletion vspreview/api/nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from pathlib import Path
from typing import Any, cast

from stgpytools import ndigits
from jetpytools import ndigits
from vapoursynth import AudioNode, RawNode, VideoNode
from vstools import Keyframes

Expand Down
2 changes: 1 addition & 1 deletion vspreview/core/types/video.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from PyQt6 import sip
from PyQt6.QtCore import Qt
from PyQt6.QtGui import QColorSpace, QImage, QPainter, QPixmap
from stgpytools import cachedproperty, classproperty, fallback
from jetpytools import cachedproperty, classproperty, fallback

from ..abstracts import AbstractYAMLObject, main_window, try_load
from ..bases import yaml_Loader
Expand Down
2 changes: 1 addition & 1 deletion vspreview/plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from typing import TYPE_CHECKING, Any, Iterable, Iterator, Literal, TypeVar, overload

from PyQt6.QtWidgets import QWidget
from stgpytools import KwargsT
from jetpytools import KwargsT

from ..core import AbstractYAMLObjectSingleton, Frame
from . import utils
Expand Down
2 changes: 1 addition & 1 deletion vspreview/plugins/builtins/slowpics_comp/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from PyQt6.QtCore import QThread
from PyQt6.QtWidgets import QComboBox, QFrame, QLabel
from requests import Session
from stgpytools import SPath
from jetpytools import SPath

from vspreview.core import (
CheckBox, ComboBox, ExtendedWidget, Frame, FrameEdit, HBoxLayout, LineEdit, ProgressBar, PushButton, VBoxLayout,
Expand Down
2 changes: 1 addition & 1 deletion vspreview/plugins/builtins/slowpics_comp/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from typing import Any

from stgpytools import SPath
from jetpytools import SPath

from PyQt6.QtWidgets import QLabel

Expand Down
2 changes: 1 addition & 1 deletion vspreview/plugins/builtins/slowpics_comp/workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from requests_toolbelt import MultipartEncoder # type: ignore
from requests_toolbelt import MultipartEncoderMonitor
from requests.utils import cookiejar_from_dict, dict_from_cookiejar
from stgpytools import SPath, ndigits
from jetpytools import SPath, ndigits
from vstools import clip_data_gather, get_prop, remap_frames, vs

from vspreview.core import Frame, PackingType, VideoOutput
Expand Down

0 comments on commit b5ac6cc

Please sign in to comment.