Skip to content

Commit

Permalink
remove python 3.8, add python 3.12, 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
slhck committed Nov 22, 2024
1 parent 6a32876 commit 9d6413c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test Package
name: Test Package

on:
push:
Expand All @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Read on for more info.

## Requirements

You need Python 3.8 or higher, and ffmpeg.
You need Python 3.9 or higher, and ffmpeg.

### ffmpeg

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tqdm>=4.64.1
colorama>=0.4.6
ffmpeg-progress-yield>=0.10.0
ffmpeg-progress-yield>=0.11.0
colorlog==6.7.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
python_requires=">=3.8",
python_requires=">=3.9",
entry_points={
"console_scripts": ["ffmpeg-normalize = ffmpeg_normalize.__main__:main"]
},
Expand Down

0 comments on commit 9d6413c

Please sign in to comment.