File tree 3 files changed +17
-14
lines changed 3 files changed +17
-14
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
2
3
3
on :
4
+ workflow_dispatch :
4
5
push :
5
6
branches : [ master ]
6
7
pull_request :
15
16
strategy :
16
17
fail-fast : false
17
18
steps :
18
- - uses : actions/checkout@v3
19
+ - uses : actions/checkout@v4
19
20
- name : Set up Python 3.10
20
- uses : actions/setup-python@v4
21
+ uses : actions/setup-python@v5
21
22
with :
22
23
python-version : ' 3.10'
23
24
- name : Install dependencies
@@ -49,23 +50,26 @@ jobs:
49
50
- name : Linux py310
50
51
os : ubuntu-latest
51
52
pyversion : ' 3.10'
52
- - name : Linux py311
53
+ - name : Linux py312
53
54
os : ubuntu-latest
54
- pyversion : ' 3.11'
55
- # OS's
55
+ pyversion : ' 3.12'
56
56
- name : Linux pypy
57
57
os : ubuntu-latest
58
58
pyversion : ' pypy3.9'
59
- - name : Windows py39
59
+ # OS's
60
+ - name : Linux py311
61
+ os : ubuntu-latest
62
+ pyversion : ' 3.11'
63
+ - name : Windows py311
60
64
os : windows-latest
61
- pyversion : ' 3.9 '
62
- - name : MacOS py39
65
+ pyversion : ' 3.11 '
66
+ - name : MacOS py311
63
67
os : macos-latest
64
- pyversion : ' 3.9 '
68
+ pyversion : ' 3.11 '
65
69
steps :
66
- - uses : actions/checkout@v3
70
+ - uses : actions/checkout@v4
67
71
- name : Set up Python ${{ matrix.pyversion }}
68
- uses : actions/setup-python@v4
72
+ uses : actions/setup-python@v5
69
73
with :
70
74
python-version : ${{ matrix.pyversion }}
71
75
- name : Install dependencies
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ and adds support for e.g. cameras and seeking.
22
22
23
23
## Installation
24
24
25
- This library works with any version of Python 3.5 + (including Pypy).
25
+ This library works with any version of Python 3.7 + (including Pypy).
26
26
There are no further dependencies. The wheels on Pypi include the ffmpeg
27
27
executable for all common platforms (Windows 7+, Linux kernel 2.6.32+,
28
28
OSX 10.9+). Install using:
Original file line number Diff line number Diff line change 74
74
"Operating System :: POSIX" ,
75
75
"Programming Language :: Python" ,
76
76
"Programming Language :: Python :: 3" ,
77
- "Programming Language :: Python :: 3.5" ,
78
- "Programming Language :: Python :: 3.6" ,
79
77
"Programming Language :: Python :: 3.7" ,
80
78
"Programming Language :: Python :: 3.8" ,
81
79
"Programming Language :: Python :: 3.9" ,
82
80
"Programming Language :: Python :: 3.10" ,
83
81
"Programming Language :: Python :: 3.11" ,
82
+ "Programming Language :: Python :: 3.12" ,
84
83
],
85
84
)
You can’t perform that action at this time.
0 commit comments