Skip to content

Commit

Permalink
Also drop support for EOL Python 3.4
Browse files Browse the repository at this point in the history
Update CHANGELOG
  • Loading branch information
dbr committed Apr 12, 2020
1 parent b332483 commit a189564
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7

script:
# pytest==4.6 fallback for Python 2.7/3.3/3.4
# pytest==4.6 fallback for Python 2.7
- pip install pytest==5.4 || pip install pytest==4.6
- python setup.py develop
- python -m pytest
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
([PR #173](https://github.com/dbr/tvnamer/pull/173))
- Files are now moved using `shutil.move` instead of custom logic around `os.rename`, which should make things more robust in situations with unusual partition setups (e.g Docker environments)
([PR #161](https://github.com/dbr/tvnamer/pull/161))
- Add command line argument to override language, e.g `tvnamer --lang de [...]`
([PR #165](https://github.com/dbr/tvnamer/pull/165))
- New TheTVDB API key specifically for tvnamer
- Various internal improvements to testing and compatability with later Python 3.x changes
- Dropping explicit support for EOL Python 3.3 and 3.4 (may still work but not tested). 2.7 support remains for now

# `2.5` - 2018-08-25
- Began keeping a changelog
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

`tvnamer` is a utility which to rename files from `some.show.s01e03.blah.abc.avi` to `Some Show - [01x03] - The Episode Name.avi` (by retrieving the episode name using data from [`tvdb_api`](https://github.com/dbr/tvdb_api))

It supports Python 2.7 and 3.4 onwards
It supports Python 2.7 and 3.5 onwards

TV information is provided by TheTVDB.com, but we are not endorsed or certified by TheTVDB.com or its affiliates.

Expand Down

0 comments on commit a189564

Please sign in to comment.