Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update soundfile
  • Loading branch information
joetoddsonos committed Sep 27, 2022
commit 7e59df7a54f245eb121d1ee93e6def5c03cdc076
8 changes: 4 additions & 4 deletions pyflac/include/FLAC/export.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
/** \file include/FLAC/export.h
*
* \brief
* This module contains #defines and symbols for exporting function
* This module contains \#defines and symbols for exporting function
* calls, and providing version information and compiled-in features.
*
* See the \link flac_export export \endlink module.
Expand All @@ -46,7 +46,7 @@
* \ingroup flac
*
* \brief
* This module contains #defines and symbols for exporting function
* This module contains \#defines and symbols for exporting function
* calls, and providing version information and compiled-in features.
*
* If you are compiling with MSVC and will link to the static library
Expand All @@ -59,7 +59,7 @@
#if defined(FLAC__NO_DLL)
#define FLAC_API

#elif defined(_MSC_VER)
#elif defined(_WIN32)
#ifdef FLAC_API_EXPORTS
#define FLAC_API __declspec(dllexport)
#else
Expand All @@ -74,7 +74,7 @@

#endif

/** These #defines will mirror the libtool-based library version number, see
/** These \#defines will mirror the libtool-based library version number, see
* http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning
*/
#define FLAC_API_VERSION_CURRENT 11
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@ def read(fname):
],
install_requires=[
'cffi>=1.4.0',
'numpy>=1.21',
'SoundFile>=0.8.0',
'numpy>=1.22; python_version >= "3.8"',
'numpy<1.22; python_version < "3.8.0"',
'SoundFile>=0.11',
],
test_suite='tests',
python_requires='>=3.7',
Expand Down