Skip to content

Commit 259d9ba

Browse files
author
Amin
committed
Update Python version and ffmpeg download url in appveyor
1 parent e832b83 commit 259d9ba

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.appveyor.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ environment:
1414
COMPOSER_NO_INTERACTION: 1
1515
ANSICON: 121x90 (121x90) # Console colors
1616

17-
ffmpeg_download: https://ffmpeg.zeranoe.com/builds/win64/static/ffmpeg-20200124-e931119-win64-static.zip
17+
ffmpeg_download: https://www.gyan.dev/ffmpeg/builds/packages/ffmpeg-5.0-essentials_build.zip
1818

1919
matrix:
20-
- PYTHON: "C:\\Python38"
20+
- PYTHON: "C:\\Python39"
2121
PYTHON_VERSION: 3.8
2222
PYTHON_ARCH: 32
2323

24-
- PYTHON: "C:\\Python37"
25-
PYTHON_VERSION: 3.7
24+
- PYTHON: "C:\\Python38"
25+
PYTHON_VERSION: 3.8
2626
PYTHON_ARCH: 32
2727

2828
init:
@@ -37,8 +37,8 @@ install:
3737
- pip install -r requirements.txt
3838
- ps: Start-FileDownload $env:ffmpeg_download
3939

40-
- 7z x ffmpeg-20200124-e931119-win64-static.zip
41-
- PATH=%PATH%;%cd%\ffmpeg-20200124-e931119-win64-static\bin
40+
- 7z x ffmpeg-5.0-essentials_build.zip
41+
- PATH=%PATH%;%cd%\ffmpeg-5.0-essentials_build\bin
4242

4343
test_script:
4444
- cd c:\projects\project-code

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
max-parallel: 4
1111
matrix:
12-
python-version: [3.7, 3.8]
12+
python-version: [3.8, 3.9]
1313

1414
steps:
1515
- uses: actions/checkout@v1

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ before_install:
1212
1313
matrix:
1414
include:
15+
- python: 3.9
1516
- python: 3.8
16-
- python: 3.7
1717

1818
script:
1919
- export PATH=$(readlink -f ffmpeg-release):$PATH

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This package uses the **[FFmpeg](https://ffmpeg.org)** to package media content
3030
- [License](#license)
3131

3232
## Requirements
33-
1. This version of the package is only compatible with **[Python 3.7](https://www.python.org/downloads/)** or higher.
33+
1. This version of the package is only compatible with **[Python 3.8](https://www.python.org/downloads/)** or higher.
3434

3535
2. To use this package, you need to **[install the FFmpeg](https://ffmpeg.org/download.html)**. You will need both FFmpeg and FFProbe binaries to use it.
3636

0 commit comments

Comments
 (0)