soifunc 0.8.0__tar.gz → 0.8.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: soifunc
3
- Version: 0.8.0
3
+ Version: 0.8.2
4
4
  Summary: Soichiro's VapourSynth Functions Collection
5
5
  License: MIT
6
6
  Author: Josh Holmer
@@ -9,6 +9,7 @@ Requires-Python: >=3.12,<4.0
9
9
  Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
12
13
  Requires-Dist: vapoursynth (>=68)
13
14
  Requires-Dist: vsdeband (>=1.2.2,<2.0.0)
14
15
  Requires-Dist: vsdenoise (>=2.7.1,<3.0.0)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "soifunc"
3
- version = "0.8.0"
3
+ version = "0.8.2"
4
4
  description = "Soichiro's VapourSynth Functions Collection"
5
5
  authors = ["Josh Holmer <jholmer.in@gmail.com>"]
6
6
  license = "MIT"
@@ -1,4 +1,3 @@
1
1
  from .deband import * # noqa: F401, F403
2
- from .deint import * # noqa: F401, F403
3
2
  from .denoise import * # noqa: F401, F403
4
3
  from .resize import * # noqa: F401, F403
@@ -34,7 +34,7 @@ def retinex_deband(
34
34
  "The format {format.name} is not supported! It must be an 8-16bit integer YUV bit format!",
35
35
  )
36
36
 
37
- mask = dre_edgemask(clip)
37
+ mask = dre_edgemask.CLAHE(clip)
38
38
 
39
39
  if showmask:
40
40
  return mask
File without changes
File without changes
File without changes
File without changes
File without changes