-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
70 changed files
with
81 additions
and
45 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
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
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 |
---|---|---|
|
@@ -37,3 +37,5 @@ and has been contributed to by (ordered by date of first contribution): | |
* [email protected] | ||
* [email protected] | ||
* [email protected] | ||
* [email protected] | ||
* [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 |
---|---|---|
|
@@ -3,6 +3,35 @@ Release History | |
|
||
.. :changelog: | ||
v0.9a2 (2019-11-17) | ||
------------------------ | ||
|
||
New | ||
~~~ | ||
- Original artist support (TOPE frame, --orig-artist) | ||
- Python 3.8 supported. | ||
|
||
Changes | ||
~~~~~~~ | ||
- Regenerated grako parser. | ||
- Moved src/* to top-level repo directory. | ||
|
||
Fix | ||
~~~ | ||
- ID3 v2.3 to v2.4 date conversion. | ||
- Match mp3 mime-types against all possible mime-types. | ||
Specifically, application/x-font-gdos. Fixes #338 | ||
- Fix simple typo: titel -> title. <[email protected]> | ||
- Fixed: load the right config file in arguments. <[email protected]> | ||
- Fix issue tracker link. Fixes #333. | ||
- Fixed art plugin when `pylast` is not installed. | ||
|
||
Other | ||
~~~~~ | ||
- Added original_artist for `jsontag` | ||
- TypeError and ValueError from _setNum. | ||
|
||
|
||
v0.9a1 (2019-03-16) | ||
------------------------ | ||
|
||
|
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
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 |
---|---|---|
|
@@ -3,8 +3,8 @@ | |
clean-pyc clean-build clean-patch clean-local clean-test-data \ | ||
test-all test-data build-release freeze-release tag-release \ | ||
pypi-release web-release github-release cookiecutter requirements | ||
SRC_DIRS = ./src/eyed3 | ||
TEST_DIR = ./src/test | ||
SRC_DIRS = ./eyed3 | ||
TEST_DIR = ./test | ||
NAME ?= Travis Shirk | ||
EMAIL ?= [email protected] | ||
GITHUB_USER ?= nicfit | ||
|
@@ -17,7 +17,7 @@ CHANGELOG = HISTORY.rst | |
CHANGELOG_HEADER = v${VERSION} ($(shell date --iso-8601))$(if ${RELEASE_NAME}, : ${RELEASE_NAME},) | ||
TEST_DATA = eyeD3-test-data | ||
TEST_DATA_FILE = ${TEST_DATA}.tgz | ||
TEST_DATA_DIR ?= $(shell pwd)/src/test | ||
TEST_DATA_DIR ?= $(shell pwd)/test | ||
|
||
help: | ||
@echo "test - run tests quickly with the default Python" | ||
|
@@ -96,17 +96,17 @@ test-data: | |
wget --quiet "http://eyed3.nicfit.net/releases/${TEST_DATA_FILE}" \ | ||
-O ${TEST_DATA_DIR}/${TEST_DATA_FILE} | ||
tar xzf ${TEST_DATA_DIR}/${TEST_DATA_FILE} -C ${TEST_DATA_DIR} | ||
cd src/test && rm -f ./data && ln -s ${TEST_DATA_DIR}/${TEST_DATA} ./data | ||
cd test && rm -f ./data && ln -s ${TEST_DATA_DIR}/${TEST_DATA} ./data | ||
|
||
clean-test-data: | ||
-rm src/test/data | ||
-rm src/test/${TEST_DATA_FILE} | ||
-rm test/data | ||
-rm test/${TEST_DATA_FILE} | ||
|
||
pkg-test-data: | ||
tar czf ./build/${TEST_DATA_FILE} -C ./src/test ./eyeD3-test-data | ||
tar czf ./build/${TEST_DATA_FILE} -C ./test ./eyeD3-test-data | ||
|
||
coverage: | ||
pytest --cov=./src/eyed3 \ | ||
pytest --cov=./eyed3 \ | ||
--cov-report=html --cov-report term \ | ||
--cov-config=setup.cfg ${TEST_DIR} | ||
|
||
|
@@ -148,9 +148,9 @@ pre-release: lint test changelog requirements | |
false; \ | ||
fi | ||
IFS=$$'\n';\ | ||
for auth in `git authors --list | sed 's/.* <\(.*\)>/\1/'`; do \ | ||
for auth in `git authors --list | sed 's/.* <\(.*\)>/\1/' | grep -v users.noreply.github.com`; do \ | ||
echo "Checking $$auth...";\ | ||
grep "$$auth" AUTHORS.rst || echo "* $$auth" >> AUTHORS.rst;\ | ||
grep "$$auth" AUTHORS.rst || echo " * $$auth" >> AUTHORS.rst;\ | ||
done | ||
@test -n "${GITHUB_USER}" || (echo "GITHUB_USER not set, needed for github" && false) | ||
@test -n "${GITHUB_TOKEN}" || (echo "GITHUB_TOKEN not set, needed for github" && false) | ||
|
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
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
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,9 +1,11 @@ | ||
Sphinx==1.8.3 | ||
check-manifest==0.37 | ||
cogapp | ||
flake8==3.7.9 | ||
hg+https://[email protected]/nicfit/sphinxcontrib-bitbucket | ||
ipdb==0.11 | ||
nicfit.py[cookiecutter]==0.8.5 | ||
paver | ||
pss==1.42 | ||
pyaml==18.11.0 | ||
sphinx-issues==1.2.0 | ||
|
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 |
---|---|---|
|
@@ -33,3 +33,5 @@ dev: | |
#- sphinxcontrib-bitbucket | ||
- hg+https://[email protected]/nicfit/sphinxcontrib-bitbucket | ||
#- git+https://github.com/nicfit/gitchangelog.git | ||
- cogapp | ||
- paver |
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,4 +1,4 @@ | ||
factory-boy==2.12.0 | ||
pytest | ||
pytest-cov==2.8.1 | ||
pytest-runner==5.2 | ||
pytest>=5.0 |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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