Skip to content

Commit d9248c4

Browse files
Fix the PyAV build fail issue on Windows CI and update the setup metadata (GH-67)
1 parent be2ff79 commit d9248c4

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ orbs:
55

66
jobs:
77
test:
8-
executor: win/default
8+
executor: win/server-2019
99
steps:
1010
- checkout
1111

setup.cfg

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,21 @@ name = thumbnails
33
version = attr: thumbnails.__version__
44
author = Artyom Vancyan
55
author_email = [email protected]
6-
description = Video thumbnail generator for modern web video players
6+
description = Video thumbnail generator for modern web video players such as Plyr, Videojs, Flowplayer, Fluid Player, etc.
77
long_description = file: README.md
88
long_description_content_type = text/markdown
99
url = https://github.com/pysnippet/thumbnails
1010
keywords =
1111
vtt
1212
json
13+
plyr
14+
video
15+
fluid
16+
player
17+
videojs
1318
thumbnail
1419
generator
20+
flowplayer
1521
thumbnails
1622
thumbnail-generator
1723
license = Apache 2.0
@@ -21,10 +27,10 @@ classifiers =
2127
License :: OSI Approved :: Apache Software License
2228
Operating System :: OS Independent
2329
Programming Language :: Python :: 3
24-
Programming Language :: Python :: 3 :: Only
2530
Programming Language :: Python :: 3.7
2631
Programming Language :: Python :: 3.8
2732
Programming Language :: Python :: 3.9
33+
Programming Language :: Python :: 3.10
2834
Topic :: Multimedia :: Video
2935

3036
[options]

src/thumbnails/__init__.py

Lines changed: 1 addition & 1 deletion
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.10"
25+
__version__ = "0.1.11"
2626
__all__ = (
2727
"Generator",
2828
"Thumbnail",

0 commit comments

Comments
 (0)