File tree 4 files changed +11
-9
lines changed
4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -10,20 +10,23 @@ jobs:
10
10
test :
11
11
runs-on : ubuntu-latest
12
12
13
+ strategy :
14
+ matrix :
15
+ python-version : ["3.10", "3.11", "3.12"]
16
+
13
17
steps :
14
18
- name : Checkout code
15
19
uses : actions/checkout@v3
16
20
17
- - name : Set up Python
21
+ - name : Set up Python ${{ matrix.python-version }}
18
22
uses : actions/setup-python@v3
19
23
with :
20
- python-version : ' 3.10 '
24
+ python-version : ${{ matrix.python-version }}
21
25
22
26
- name : Install apt dependencies
23
27
run : |
24
- sudo add-apt-repository ppa:savoury1/ffmpeg4
25
28
sudo apt-get update
26
- sudo apt-get -y install ffmpeg libportaudio2=19.6.0-1.1
29
+ sudo apt-get -y install ffmpeg libportaudio2
27
30
28
31
- name : Install pip dependencies
29
32
run : |
Original file line number Diff line number Diff line change 14
14
strategy :
15
15
fail-fast : false
16
16
matrix :
17
- python-version : ["3.8 ", "3.10 "]
17
+ python-version : ["3.10 ", "3.11", "3.12 "]
18
18
19
19
steps :
20
20
- uses : actions/checkout@v3
31
31
wget --no-verbose --show-progress --continue -O rttms/ES2002b_long.rttm https://raw.githubusercontent.com/pyannote/AMI-diarization-setup/main/only_words/rttms/train/ES2002b.rttm
32
32
- name : Install apt dependencies
33
33
run : |
34
- sudo add-apt-repository ppa:savoury1/ffmpeg4
35
34
sudo apt-get update
36
- sudo apt-get -y install ffmpeg libportaudio2=19.6.0-1.1 sox
35
+ sudo apt-get -y install ffmpeg libportaudio2 sox
37
36
- name : Install pip dependencies
38
37
run : |
39
38
python -m pip install --upgrade pip
Original file line number Diff line number Diff line change 1
1
numpy >= 1.20.2 ,< 2.0.0
2
- matplotlib >= 3.3.3 ,< 3.6 .0
2
+ matplotlib >= 3.3.3 ,< 4.0 .0
3
3
rx >= 3.2.0
4
4
scipy >= 1.6.0
5
5
sounddevice >= 0.4.2
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ package_dir=
21
21
packages =find:
22
22
install_requires =
23
23
numpy>=1.20.2,<2.0.0
24
- matplotlib>=3.3.3,<3.6 .0
24
+ matplotlib>=3.3.3,<4.0 .0
25
25
rx>=3.2.0
26
26
scipy>=1.6.0
27
27
sounddevice>=0.4.2
You can’t perform that action at this time.
0 commit comments