Skip to content

Commit 25dcb61

Browse files
Fix PyAV version (GH-70)
1 parent d9248c4 commit 25dcb61

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ ubuntu-latest, macOS-latest ]
15-
python-version: [ "3.7", "3.8", "3.9" ]
15+
python-version: [ "3.8", "3.9", "3.10" ]
1616

1717
steps:
1818
- uses: actions/checkout@v2

setup.cfg

+3-4
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,13 @@ classifiers =
3737
packages =
3838
thumbnails
3939
install_requires =
40-
av==8.0.0;sys_platform=='win32'
41-
av==9.2.0;sys_platform!='win32'
40+
av>=11.0.0
4241
click>=8.0.3
4342
imageio-ffmpeg>=0.4.7
4443
imageio>=2.23.0
4544
pillow>=8.4.0
46-
rich>=13.0.0
47-
python_requires = >=3.7
45+
rich==13.0.0
46+
python_requires = >=3.8
4847
package_dir =
4948
=src
5049
zip_safe = no

src/thumbnails/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from .thumbnail import ThumbnailVTT
2323
from .thumbnail import register_thumbnail
2424

25-
__version__ = "0.1.11"
25+
__version__ = "0.1.12"
2626
__all__ = (
2727
"Generator",
2828
"Thumbnail",

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tox]
2-
minversion = 3.7.0
2+
minversion = 3.8.0
33
envlist =
4-
python3.7
54
python3.8
65
python3.9
6+
python3.10
77
isolated_build = true
88

99
[testenv]

0 commit comments

Comments
 (0)