-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add alpine linux libturbojpeg lib path (#79) --------- Co-authored-by: Phillip Dykman <[email protected]>
- Loading branch information
Showing
3 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
MIT License | ||
|
||
Copyright (c) 2018-2023 Lilo Huang <[email protected]> | ||
Copyright (c) 2018-2024 Lilo Huang <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
from setuptools import setup, find_packages | ||
setup( | ||
name='PyTurboJPEG', | ||
version='1.7.3', | ||
version='1.7.4', | ||
description='A Python wrapper of libjpeg-turbo for decoding and encoding JPEG image.', | ||
author='Lilo Huang', | ||
author_email='[email protected]', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# | ||
# PyTurboJPEG - A Python wrapper of libjpeg-turbo for decoding and encoding JPEG image. | ||
# | ||
# Copyright (c) 2018-2023, Lilo Huang. All rights reserved. | ||
# Copyright (c) 2018-2024, Lilo Huang. All rights reserved. | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -23,7 +23,7 @@ | |
# SOFTWARE. | ||
|
||
__author__ = 'Lilo Huang <[email protected]>' | ||
__version__ = '1.7.3' | ||
__version__ = '1.7.4' | ||
|
||
from ctypes import * | ||
from ctypes.util import find_library | ||
|
@@ -43,6 +43,7 @@ | |
], | ||
'Linux': [ | ||
'/usr/lib/x86_64-linux-gnu/libturbojpeg.so.0', | ||
'/usr/lib/libturbojpeg.so.0' | ||
'/usr/lib64/libturbojpeg.so.0', | ||
'/opt/libjpeg-turbo/lib64/libturbojpeg.so' | ||
], | ||
|