Skip to content

Commit

Permalink
Fix PyAV version (GH-70)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtyomVancyan committed Mar 3, 2024
1 parent d9248c4 commit 25dcb61
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macOS-latest ]
python-version: [ "3.7", "3.8", "3.9" ]
python-version: [ "3.8", "3.9", "3.10" ]

steps:
- uses: actions/checkout@v2
Expand Down
7 changes: 3 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,13 @@ classifiers =
packages =
thumbnails
install_requires =
av==8.0.0;sys_platform=='win32'
av==9.2.0;sys_platform!='win32'
av>=11.0.0
click>=8.0.3
imageio-ffmpeg>=0.4.7
imageio>=2.23.0
pillow>=8.4.0
rich>=13.0.0
python_requires = >=3.7
rich==13.0.0
python_requires = >=3.8
package_dir =
=src
zip_safe = no
Expand Down
2 changes: 1 addition & 1 deletion src/thumbnails/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from .thumbnail import ThumbnailVTT
from .thumbnail import register_thumbnail

__version__ = "0.1.11"
__version__ = "0.1.12"
__all__ = (
"Generator",
"Thumbnail",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
minversion = 3.7.0
minversion = 3.8.0
envlist =
python3.7
python3.8
python3.9
python3.10
isolated_build = true

[testenv]
Expand Down

0 comments on commit 25dcb61

Please sign in to comment.