Skip to content

Commit

Permalink
Authentication error response (#56)
Browse files Browse the repository at this point in the history
* Add authentication error on invalid api key

* Update dependencies

* Update docs

* Increment version
  • Loading branch information
Buried-In-Code authored Oct 20, 2021
1 parent 76ed857 commit 5a3a089
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 56 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
hooks:
- id: black
- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.2
rev: 4.0.1
hooks:
- id: flake8
additional_dependencies: [ flake8-docstrings, flake8-builtins, flake8-rst-docstrings ]
Expand Down
100 changes: 55 additions & 45 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 = "Simyan"
version = "0.6.0"
version = "0.6.1"
description = "A Python wrapper for the Comicvine API."
license = "GPL-3.0-or-later"
authors = ["Buried-In-Code <BuriedInCode@tuta.io>"]
Expand Down Expand Up @@ -34,7 +34,7 @@ keywords=["comics", "comic", "metadata"]

[tool.poetry.dependencies]
python = "^3.7"
marshmallow = "^3.13.0"
marshmallow = "^3.14.0"
requests = "^2.26.0"
ratelimit = "^2.2.1"
deprecation = "^2.1.0"
Expand Down
2 changes: 1 addition & 1 deletion simyan/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""simyan package entry file."""
__version__ = "0.6.0"
__version__ = "0.6.1"
__all__ = ["__version__", "create_session", "api"]

from typing import Optional
Expand Down
Loading

0 comments on commit 5a3a089

Please sign in to comment.