jhj0517
commited on
Commit
·
d7bbc82
1
Parent(s):
1523bb2
Remove meaningless step and limit to `python >= 3.9`
Browse files- .github/workflows/ci.yml +1 -4
.github/workflows/ci.yml
CHANGED
@@ -16,7 +16,7 @@ jobs:
|
|
16 |
runs-on: ubuntu-latest
|
17 |
strategy:
|
18 |
matrix:
|
19 |
-
python: ["3.
|
20 |
|
21 |
steps:
|
22 |
- name: Clean up space for action
|
@@ -28,9 +28,6 @@ jobs:
|
|
28 |
with:
|
29 |
python-version: ${{ matrix.python }}
|
30 |
|
31 |
-
- name: Install git and ffmpeg
|
32 |
-
run: sudo apt-get update && sudo apt-get install -y git ffmpeg
|
33 |
-
|
34 |
- name: Install dependencies
|
35 |
run: pip install -r requirements.txt pytest
|
36 |
|
|
|
16 |
runs-on: ubuntu-latest
|
17 |
strategy:
|
18 |
matrix:
|
19 |
+
python: ["3.9", "3.10", "3.11", "3.12"]
|
20 |
|
21 |
steps:
|
22 |
- name: Clean up space for action
|
|
|
28 |
with:
|
29 |
python-version: ${{ matrix.python }}
|
30 |
|
|
|
|
|
|
|
31 |
- name: Install dependencies
|
32 |
run: pip install -r requirements.txt pytest
|
33 |
|