This is the first release of pytaglib that targets Taglib 2.0, a major upgrade of the underlying C++ Taglib library.
-
!125: stop building wheels for out-of-support Python versions 3.6 and 3.7
-
!123: upgrade to Taglib 2.0
Thanks to Urs Fleisch for help
-
#135: natively build arm64 wheels on macos-14 runner
- !118: update Taglib version for binary wheels to 1.13.1
- !117: modernize packaging / tooling
- !116: fix Python 3.12 build
- update Taglib version for binary wheels to 1.13
- improve
build_taglib.py
helper script (now supports all platforms) - add
taglib_version()
to thetaglib
module - bundle native Taglib whith binary wheels (even on Unix). This enables to use the latest Taglib version (distributions often ship outdated versions) and removes native dependencies.
- use cibuildwheel to provide binary wheels for a multitude of platform / Python version combinations (fixes #101 #105)
- allow using
File
as a context manager, optionally saving on exit - new property
File.is_closed
- fix #94: Accept
os.PathLike
in constructor
File.path
is now aPath
object
- fix #93: publish PyPI packages from GitLab workflow
- fix #92: build windows binary wheels from CI
- fix #89: remove Python 2 support
- fix #88: rename pyprinttags3 --> pyprinttags, ignore unsupported tags in the script
- fix #65: use tox for testing. Request re-cythonizing module with environment variable
PYTAGLIB_CYTHONIZE
instead of argument tosetup.py
now. - fix #63: python2 tests did not pass
- fix #62: pyprinttags module did not work
- Fix published taglib.cpp
- Remove cython dependency from setup.py (thanks to Popkornium18 for reporting)
- Fix accidental upload of the Windows version to PyPI. Hopefully fixes #42, #43.
- Fix #31: Don't use precompiled
taglib.cpp
on Windows
- Fix #33 (no longer uppercase bytestring tag values)
- Windows version: fix filenames with non-local codepage characters
- update README (pip options for custom taglib install dir - thanks to qbuchanan)
- build windows wheel against taglib-1.11.1
- cython version used to create the shipped cpp-file updated to 0.25.1
- Remove workaround for pre-1.9 taglib versions in order to reduce codebase
- code cleanup
- move tests out of source folder
This is a non-feature release (no change to the code base)
- update README
- build windows wheel against taglib 1.11
- add Windows support (see README)
- update copyright dates
- update cython version used to build shipped taglib.cpp to 0.23.4
- add a
File.close()
method that ends all I/O operations.
- include ReST version of the README for pypi (converted using pandoc)
- ensure that pyprinttags removes unsupported properties only when user enters 'y' or 'yes' (thanks to lahwaacz)
- fix a typo in the readme (thanks to panzl)
- cleaned up source code and made it more readable
- update README to contain more information
- no functional API changes
- as the library has been used for several years now without any known bugs, I declare it as stable.
- cleaned up source. Especially simplified several statements due to improvements in recent Cython versions.
- The workaround for MPEG files with taglib <= 1.8 is now forced disabled if taglib version >= 1.9 is detected.
- update copyright dates
- remove Cython dependency by shipping taglib.cpp
- remove a test file that looked a little non-free
- update copyright dates
- fix Python 2.6 support in pyprinttags
- update copyright dates
- add support for Python 2.6 by replacing some methods added in 2.7
- move cython from install_requires to setup_requires
- ensure sources are included in sdist packages
- fix call to pyprinttags
- fix setup.py handling for non-utf8-locales
- rename pyprinttags to pyprinttags3 for python3 installs
- add "batch mode" to pyprinttags and allow several files at once
- add a man page for pyprinttags
- remove .travis.yml since travis' build system is too old for building pytaglib
- updated packaging information in setup.py
- implement a hack that works around a bug in taglib, leading
to several problems in connection with MP3 files with ID3v1
tags. Open files with
f=taglib.File(path, applyID3v2Hack=True)
to ensure that MPEG files will always get updated to ID3v2 if necessary. Use at your own risk! - update documentation
- declare development stadium as "beta" since no critical bugs seem to exist.
- fix integration into PyPI, clean up code & documentation
- add test script for python2.x/3.x
- save() now returns unsuccessful tags due to metadata format
- add taglib.version attribute to get module version
- all tests pass with my taglib fork
- fix Python2 compatibility
- README now in ReSt format
- code cleanup and documentation improvement
- Switch to setuptools/distribute, prepare publishing on PyPI
- Add some basic unit tests (test files stolen from taglib)
- Ensure package works with Python2.x/3.x