Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit a3e2916

Browse files
committed
bump to v0.8.4
1 parent 30e1ce0 commit a3e2916

File tree

5 files changed

+31
-20
lines changed

5 files changed

+31
-20
lines changed

.github/workflows/test_n_pub.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,11 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
python-version: [3.7, 3.8, 3.9, "3.10"]
18+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
1919
os: [ubuntu-latest, macos-latest, windows-latest]
2020
# python-version: [3.7, 3.8, 3.9]
2121
# os: [windows-latest]
2222
exclude:
23-
- os: macos-latest
24-
python-version: 3.7
25-
- os: windows-latest
26-
python-version: 3.7
2723
- os: macos-latest
2824
python-version: 3.8
2925
- os: windows-latest
@@ -32,6 +28,14 @@ jobs:
3228
python-version: 3.9
3329
- os: windows-latest
3430
python-version: 3.9
31+
- os: macos-latest
32+
python-version: 3.10
33+
- os: windows-latest
34+
python-version: 3.10
35+
- os: macos-latest
36+
python-version: 3.11
37+
- os: windows-latest
38+
python-version: 3.11
3539

3640
steps:
3741
- run: echo ${{github.ref}}

CHANGELOG.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,23 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
55

66
## [Unreleased]
77

8+
## [0.8.3] - 2023-11-07
9+
10+
### Changed
11+
12+
- Matching the `ffmpegio-core` version bump
13+
814
## [0.8.3] - 2023-03-19
915

1016
### Changed
1117

12-
- Force
18+
- Matching the `ffmpegio-core` version bump
1319

1420
## [0.8.2] - 2023-03-19
1521

1622
### Changed
1723

18-
- Matching the `ffmpegio` version bump
24+
- Matching the `ffmpegio-core` version bump
1925

2026
## [0.8.2] - 2023-03-18
2127

@@ -25,52 +31,52 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
2531

2632
### Changed
2733

28-
- Skipping 0.8.0 to match `ffmpegio` version
34+
- Skipping 0.8.0 to match `ffmpegio-core` version
2935

3036
## [0.7.0] - 2022-08-24
3137

3238
### Changed
3339

34-
- Matching the `ffmpegio` version bump
40+
- Matching the `ffmpegio-core` version bump
3541
- `video_bytes()` and `audio_bytes()` make sure data frames are C-contiguous
3642

3743
## [0.6.0] - 2022-08-13
3844

3945
### Changed
4046

41-
- Matching the `ffmpegio` version bump
47+
- Matching the `ffmpegio-core` version bump
4248
- `video_info()` allows 2-D grayscale array
4349
- `audio_info()` allows 1-D mono array
4450

4551
## [0.5.1] - 2022-04-21
4652

4753
### Changed
4854

49-
- Matching the `ffmpegio` version bump
55+
- Matching the `ffmpegio-core` version bump
5056

5157
## [0.5.0] - 2022-04-03
5258

5359
### Changed
5460

55-
- Matching the `ffmpegio` version bump
61+
- Matching the `ffmpegio-core` version bump
5662

5763
## [0.4.1] - 2022-02-22
5864

5965
### Changed
6066

61-
- Matching the `ffmpegio` version bump
67+
- Matching the `ffmpegio-core` version bump
6268

6369
## [0.4.0] - 2022-02-22
6470

6571
### Changed
6672

67-
- Matching the `ffmpegio` version bump
73+
- Matching the `ffmpegio-core` version bump
6874

6975
## [0.3.3] - 2022-02-18
7076

7177
### Changed
7278

73-
- Matching the `ffmpegio` version bump
79+
- Matching the `ffmpegio-core` version bump
7480

7581
## [0.3.1] - 2022-02-13
7682

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,16 @@ classifiers = [
2020
"Topic :: Multimedia :: Video",
2121
"Topic :: Multimedia :: Video :: Capture",
2222
"Topic :: Multimedia :: Video :: Conversion",
23-
"Programming Language :: Python :: 3.7",
2423
"Programming Language :: Python :: 3.8",
2524
"Programming Language :: Python :: 3.9",
2625
"Programming Language :: Python :: 3.10",
26+
"Programming Language :: Python :: 3.11",
27+
"Programming Language :: Python :: 3.12",
2728
]
2829

2930
dynamic = ["version"]
30-
requires-python = ">=3.7"
31-
dependencies = ["ffmpegio-core >= 0.8.2", "numpy >= 1.20"]
31+
requires-python = ">=3.8"
32+
dependencies = ["ffmpegio-core >= 0.8.4", "numpy >= 1.20"]
3233

3334
[project.urls]
3435
Home = "https://python-ffmpegio.github.io/python-ffmpegio"

src/ffmpegio_plugin_numpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
hookimpl = HookimplMarker("ffmpegio")
1010

11-
__version__ = "0.8.3"
11+
__version__ = "0.8.4"
1212
# When updating version, make sure to update setup.cfg install_requires
1313
# ffmpegio-core version to match current ffmpeg-core version
1414

0 commit comments

Comments
 (0)