Skip to content

Commit 7e65144

Browse files
committed
Merge branch 'master' into issue-71
2 parents 13c32ed + b57f3a6 commit 7e65144

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 2-Clause License
22

3-
Copyright (c) 2019, imageio
3+
Copyright (c) 2019-2025, imageio
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

imageio_ffmpeg/_definitions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import platform
22
import struct
33

4-
__version__ = "0.5.0"
4+
__version__ = "0.5.1"
55

66

77
def get_platform():

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
if "sdist" in sys.argv:
2727
target_dir = os.path.abspath(os.path.join(this_dir, "imageio_ffmpeg", "binaries"))
2828
for fname in os.listdir(target_dir):
29-
if fname != "README.md":
29+
if fname not in ["README.md", "__init__.py"]:
3030
os.remove(os.path.join(target_dir, fname))
3131

3232

@@ -58,7 +58,7 @@
5858
provides=["imageio_ffmpeg"],
5959
python_requires=">=3.5",
6060
setup_requires=[],
61-
install_requires=["setuptools"],
61+
install_requires=[],
6262
packages=["imageio_ffmpeg", "imageio_ffmpeg.binaries"],
6363
package_data={"imageio_ffmpeg.binaries": ["*.*"]},
6464
include_package_data=True,

0 commit comments

Comments
 (0)