Skip to content

Commit

Permalink
🔀 Merge branch 'release-2020.05.23.post0'
Browse files Browse the repository at this point in the history
  • Loading branch information
opacam committed May 24, 2020
2 parents c446f4a + 4ff814b commit 0ee83fc
Show file tree
Hide file tree
Showing 8 changed files with 79 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest tests/ --cov client-for-tvdb/ --cov-report=xml
pytest tests/ --cov client_for_tvdb/ --cov-report=xml
# The following step will only be run for python 3.8
- name: Upload coverage to Codecov
if: matrix.python-version == '3.8'
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

# Changelog

## [v2020.05.23.post0](https://github.com/opacam/client-for-tvdb/tree/v2020.05.23.post0) (2020-05-24)
[Full Changelog](https://github.com/opacam/client-for-tvdb/compare/v2020.05.23...v2020.05.23.post0)

**General:**

- Add CHANGELOG.md

**Fixed bugs:**

- Update project dependencies to accept python 3.6+
- Make that codecov and gh-actions badges use the develop branch
- Fix coverage report

## [v2020.05.23](https://github.com/opacam/client-for-tvdb/tree/v2020.05.23) (2020-05-24)
[Full Changelog](https://github.com/opacam/client-for-tvdb/compare/22d96468078bbf3cb54bae6e191eead985bb41c1...v2020.05.23)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# client-for-tvdb

[![CI](https://github.com/opacam/client-for-tvdb/workflows/CI/badge.svg?branch=master)](https://github.com/opacam/client-for-tvdb/actions)
[![codecov](https://codecov.io/gh/opacam/client-for-tvdb/branch/master/graph/badge.svg)](https://codecov.io/gh/opacam/client-for-tvdb)
[![CI](https://github.com/opacam/client-for-tvdb/workflows/CI/badge.svg?branch=develop)](https://github.com/opacam/client-for-tvdb/actions)
[![codecov](https://codecov.io/gh/opacam/client-for-tvdb/branch/develop/graph/badge.svg)](https://codecov.io/gh/opacam/client-for-tvdb)
[![Python versions](https://img.shields.io/badge/Python-3.6+-brightgreen.svg?style=flat)](https://www.python.org/downloads/)
[![GitHub release](https://img.shields.io/github/release/opacam/client-for-tvdb.svg)](https://gitHub.com/opacam/client-for-tvdb/releases/)
[![GitHub tag](https://img.shields.io/github/tag/opacam/client-for-tvdb.svg)](https://gitHub.com/opacam/client-for-tvdb/tags/)
Expand Down
2 changes: 1 addition & 1 deletion client_for_tvdb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from client_for_tvdb.client import TvdbClient

__version__ = "2020.05.23"
__version__ = "2020.05.23.post0"

__all__ = ["__version__", "TvdbClient"]
50 changes: 48 additions & 2 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "client-for-tvdb"
version = "2020.05.23"
version = "2020.05.23.post0"
description = "A simple client for the TVDB API v3."
license = "MIT"
readme = "README.md"
Expand All @@ -23,7 +23,7 @@ authors = ["opacam <canellestudi@gmail.com>"]
maintainers = ["opacam <canellestudi@gmail.com>"]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.6"
requests = "^2.23.0"
requests-cache = "^0.5.2"
python-dotenv = "^0.13.0"
Expand Down
6 changes: 6 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ coverage==5.1 \
idna==2.9 \
--hash=sha256:a068a21ceac8a4d63dbfd964670474107f541babbd2250d61922f029858365fa \
--hash=sha256:7588d1c14ae4c77d74036e8c22ff447b26d0fde8f007354fd48a7814db15b7cb
importlib-metadata==1.6.0; python_version < "3.8" \
--hash=sha256:2a688cbaa90e0cc587f1df48bdc97a6eadccdcd9c35fb3f976a09e3b5016d90f \
--hash=sha256:34513a8a0c4962bc66d35b359558fd8a5e10cd472d37aec5f66858addef32c1e
more-itertools==8.3.0 \
--hash=sha256:558bb897a2232f5e4f8e2399089e35aecb746e1f9191b6584a151647e89267be \
--hash=sha256:7818f596b1e87be009031c7653d01acc46ed422e6656b394b0f765ce66ed4982
Expand Down Expand Up @@ -90,3 +93,6 @@ urllib3==1.25.9 \
wcwidth==0.1.9 \
--hash=sha256:cafe2186b3c009a04067022ce1dcd79cb38d8d65ee4f4791b8888d6599d1bbe1 \
--hash=sha256:ee73862862a156bf77ff92b09034fc4825dd3af9cf81bc5b360668d425f3c5f1
zipp==3.1.0; python_version < "3.8" \
--hash=sha256:aa36550ff0c0b7ef7fa639055d797116ee891440eac1a56f378e2d3179e0320b \
--hash=sha256:c599e4d75c98f6798c509911d08a22e6c021d074469042177c8c86fb92eefd96
2 changes: 1 addition & 1 deletion tests/test_client_for_tvdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@


def test_version_for_module():
assert __version__ == '2020.05.23'
assert __version__ == '2020.05.23.post0'

0 comments on commit 0ee83fc

Please sign in to comment.