Skip to content

Commit

Permalink
Release/v1.4.6 (#72)
Browse files Browse the repository at this point in the history
* Release v1.4.6

* update ci image

* try a different ci image

* ...and yet another
  • Loading branch information
supermihi authored Feb 26, 2020
1 parent 84b9154 commit 3537b57
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 34 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ workflows:
jobs:
tox:
docker:
- image: python:3.7-stretch
- image: python:3.8-buster

working_directory: ~/repo

Expand All @@ -32,4 +32,4 @@ jobs:
name: run tests
command: |
. venv/bin/activate
tox
tox
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ dist
.settings
.project
.pydevproject
.tox
.idea
*.pyc
*.so
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

NEXT (????/??/??)
pytaglib 1.4.6 (2020/02/26)
-----------------
- fix #65: use tox for testing. Request re-cythonizing module with environment variable `PYTAGLIB_CYTHONIZE` instead of argument to `setup.py` now.
- fix #63: python2 tests did not pass
Expand Down
84 changes: 55 additions & 29 deletions src/taglib.cpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/taglib.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from libcpp.utility cimport pair
cimport ctypes

version = '1.4.5'
version = '1.4.6'

cdef unicode toUnicode(ctypes.String s):
"""Converts TagLib::String to a unicode string (``str`` in Python 3, ``unicode`` else)."""
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py37
envlist = py27,py38

[testenv]
deps =
Expand Down

0 comments on commit 3537b57

Please sign in to comment.