From d9248c4a9e8000ec9f22960d535278bc74c6b36a Mon Sep 17 00:00:00 2001 From: Artyom Vancyan <44609997+ArtyomVancyan@users.noreply.github.com> Date: Wed, 19 Apr 2023 14:53:53 +0400 Subject: [PATCH] Fix the `PyAV` build fail issue on Windows CI and update the setup metadata (GH-67) --- .circleci/config.yml | 2 +- setup.cfg | 10 ++++++++-- src/thumbnails/__init__.py | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4e553cb..f285a75 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,7 +5,7 @@ orbs: jobs: test: - executor: win/default + executor: win/server-2019 steps: - checkout diff --git a/setup.cfg b/setup.cfg index 71f82b7..f2a7328 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,15 +3,21 @@ name = thumbnails version = attr: thumbnails.__version__ author = Artyom Vancyan author_email = artyom@pysnippet.org -description = Video thumbnail generator for modern web video players +description = Video thumbnail generator for modern web video players such as Plyr, Videojs, Flowplayer, Fluid Player, etc. long_description = file: README.md long_description_content_type = text/markdown url = https://github.com/pysnippet/thumbnails keywords = vtt json + plyr + video + fluid + player + videojs thumbnail generator + flowplayer thumbnails thumbnail-generator license = Apache 2.0 @@ -21,10 +27,10 @@ classifiers = License :: OSI Approved :: Apache Software License Operating System :: OS Independent Programming Language :: Python :: 3 - Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 Topic :: Multimedia :: Video [options] diff --git a/src/thumbnails/__init__.py b/src/thumbnails/__init__.py index 47a4106..fb9fd69 100644 --- a/src/thumbnails/__init__.py +++ b/src/thumbnails/__init__.py @@ -22,7 +22,7 @@ from .thumbnail import ThumbnailVTT from .thumbnail import register_thumbnail -__version__ = "0.1.10" +__version__ = "0.1.11" __all__ = ( "Generator", "Thumbnail",